Skip to content

Latest commit

 

History

History
114 lines (74 loc) · 2.64 KB

StatussenApi.md

File metadata and controls

114 lines (74 loc) · 2.64 KB

ZaakregistratiecomponentZrcApi.StatussenApi

All URIs are relative to http://example.com/api/v1

Method HTTP request Description
statussenByIdGet GET /statussen/{id} status_read
statussenPost POST /statussen status_create

statussenByIdGet

Status statussenByIdGet(id)

status_read

Example

var ZaakregistratiecomponentZrcApi = require('zaakregistratiecomponent__zrc_api');
var defaultClient = ZaakregistratiecomponentZrcApi.ApiClient.instance;

// Configure HTTP basic authorization: auth
var auth = defaultClient.authentications['auth'];
auth.username = 'YOUR USERNAME';
auth.password = 'YOUR PASSWORD';

var apiInstance = new ZaakregistratiecomponentZrcApi.StatussenApi();

var id = 56; // Number | A unique integer value identifying this status.


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.statussenByIdGet(id, callback);

Parameters

Name Type Description Notes
id Number A unique integer value identifying this status.

Return type

Status

Authorization

auth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

statussenPost

Status statussenPost(body)

status_create

Example

var ZaakregistratiecomponentZrcApi = require('zaakregistratiecomponent__zrc_api');
var defaultClient = ZaakregistratiecomponentZrcApi.ApiClient.instance;

// Configure HTTP basic authorization: auth
var auth = defaultClient.authentications['auth'];
auth.username = 'YOUR USERNAME';
auth.password = 'YOUR PASSWORD';

var apiInstance = new ZaakregistratiecomponentZrcApi.StatussenApi();

var body = new ZaakregistratiecomponentZrcApi.Status(); // Status | 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.statussenPost(body, callback);

Parameters

Name Type Description Notes
body Status

Return type

Status

Authorization

auth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json