Skip to content

Latest commit

 

History

History
114 lines (76 loc) · 2.83 KB

ZaakobjectenApi.md

File metadata and controls

114 lines (76 loc) · 2.83 KB

ZaakregistratiecomponentZrcApi.ZaakobjectenApi

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

Method HTTP request Description
zaakobjectenByIdGet GET /zaakobjecten/{id} zaakobject_read
zaakobjectenPost POST /zaakobjecten zaakobject_create

zaakobjectenByIdGet

ZaakObject zaakobjectenByIdGet(id)

zaakobject_read

Geef de details van een ZAAKOBJECT relatie.

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.ZaakobjectenApi();

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


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

Parameters

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

Return type

ZaakObject

Authorization

auth

HTTP request headers

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

zaakobjectenPost

ZaakObject zaakobjectenPost(body)

zaakobject_create

Registreer een ZAAKOBJECT relatie.

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.ZaakobjectenApi();

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


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

Parameters

Name Type Description Notes
body ZaakObject

Return type

ZaakObject

Authorization

auth

HTTP request headers

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