All URIs are relative to http://example.com/api/v1
Method | HTTP request | Description |
---|---|---|
zakenByIdGet | GET /zaken/{id} | zaak_read |
zakenPost | POST /zaken | zaak_create |
zakenZaakeigenschappenByZaakPkAndIdGet | GET /zaken/{zaak_pk}/zaakeigenschappen/{id} | zaakeigenschap_read |
zakenZaakeigenschappenByZaakPkGet | GET /zaken/{zaak_pk}/zaakeigenschappen | zaakeigenschap_list |
zakenZaakeigenschappenByZaakPkPost | POST /zaken/{zaak_pk}/zaakeigenschappen | zaakeigenschap_create |
Zaak zakenByIdGet(id)
zaak_read
Opvragen en bewerken van ZAAKen.
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.ZakenApi();
var id = 56; // Number | A unique integer value identifying this zaak.
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.zakenByIdGet(id, callback);
Name | Type | Description | Notes |
---|---|---|---|
id | Number | A unique integer value identifying this zaak. |
- Content-Type: application/json
- Accept: application/json
Zaak zakenPost(body)
zaak_create
Maak een ZAAK aan. Indien geen zaakidentificatie gegeven is, dan wordt deze automatisch gegenereerd.
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.ZakenApi();
var body = new ZaakregistratiecomponentZrcApi.Zaak(); // Zaak |
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.zakenPost(body, callback);
Name | Type | Description | Notes |
---|---|---|---|
body | Zaak |
- Content-Type: application/json
- Accept: application/json
ZaakEigenschap zakenZaakeigenschappenByZaakPkAndIdGet(id, zaakPk)
zaakeigenschap_read
Geef de details van ZaakEigenschap voor een ZAAK.
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.ZakenApi();
var id = 56; // Number | A unique integer value identifying this zaakeigenschap.
var zaakPk = "zaakPk_example"; // String |
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.zakenZaakeigenschappenByZaakPkAndIdGet(id, zaakPk, callback);
Name | Type | Description | Notes |
---|---|---|---|
id | Number | A unique integer value identifying this zaakeigenschap. | |
zaakPk | String |
- Content-Type: application/json
- Accept: application/json
[ZaakEigenschap] zakenZaakeigenschappenByZaakPkGet(zaakPk)
zaakeigenschap_list
Geef een collectie van eigenschappen behorend bij een ZAAK.
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.ZakenApi();
var zaakPk = "zaakPk_example"; // String |
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.zakenZaakeigenschappenByZaakPkGet(zaakPk, callback);
Name | Type | Description | Notes |
---|---|---|---|
zaakPk | String |
- Content-Type: application/json
- Accept: application/json
ZaakEigenschap zakenZaakeigenschappenByZaakPkPost(zaakPk, body)
zaakeigenschap_create
Registreer een eigenschap van een ZAAK.
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.ZakenApi();
var zaakPk = "zaakPk_example"; // String |
var body = new ZaakregistratiecomponentZrcApi.ZaakEigenschap(); // ZaakEigenschap |
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.zakenZaakeigenschappenByZaakPkPost(zaakPk, body, callback);
Name | Type | Description | Notes |
---|---|---|---|
zaakPk | String | ||
body | ZaakEigenschap |
- Content-Type: application/json
- Accept: application/json