| GET POST | /api/projects |
|---|
"use strict";
export class RegistrationProfileFieldValue {
/** @param {{DocumentFieldID?:string,Value?:string,ShadowValue?:string,IsModifiedByUser?:boolean}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
DocumentFieldID;
/** @type {string} */
Value;
/** @type {string} */
ShadowValue;
/** @type {boolean} */
IsModifiedByUser;
}
export class GetProjects {
/** @param {{SearchCriteria?:string,PageSize?:number,PageNumber?:number,ModifiedSince?:string,OrderBy?:string,Active?:boolean,RegistrationProfileFieldID?:string,DependableFields?:RegistrationProfileFieldValue[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
SearchCriteria;
/** @type {number} */
PageSize;
/** @type {number} */
PageNumber;
/** @type {?string} */
ModifiedSince;
/** @type {string} */
OrderBy;
/** @type {?boolean} */
Active;
/** @type {string} */
RegistrationProfileFieldID;
/** @type {RegistrationProfileFieldValue[]} */
DependableFields;
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /api/projects HTTP/1.1
Host: test-do-services.klokgroep.nl
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
SearchCriteria: String,
PageSize: 0,
PageNumber: 0,
ModifiedSince: 0001-01-01,
OrderBy: String,
Active: False,
DependableFields:
[
{
Value: String,
ShadowValue: String,
IsModifiedByUser: False
}
]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
[
{
ID: 0,
Number: String,
Name: String,
Description1: String,
Description2: String,
City: String,
Active: False
}
]