| Requires any of the roles: | Worker, Agent, Administrator, Agent, Administrator |
| GET,POST,PUT,OPTIONS | /v1/EventRegistration |
|---|
"use strict";
export class EventRegistration {
/** @param {{EventRegistrationId?:string,Description?:string,Summary?:string,PageContent?:string,RegistrationStart?:string,RegistrationEnd?:string,RegistrationCount?:number,Active?:boolean}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
EventRegistrationId;
/** @type {string} */
Description;
/** @type {string} */
Summary;
/** @type {string} */
PageContent;
/** @type {string} */
RegistrationStart;
/** @type {string} */
RegistrationEnd;
/** @type {number} */
RegistrationCount;
/** @type {boolean} */
Active;
}
export class EventRegistrationResponse {
/** @param {{ResponseStatus?:ResponseStatus,EventRegistration?:EventRegistration[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {ResponseStatus} */
ResponseStatus;
/** @type {EventRegistration[]} */
EventRegistration = [];
}
export class EventRegistrationRequest {
/** @param {{EventRegistration?:EventRegistration[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {EventRegistration[]} */
EventRegistration = [];
}
JavaScript EventRegistrationRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v1/EventRegistration HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"EventRegistration":[{"EventRegistrationId":"00000000000000000000000000000000","Description":"String","Summary":"String","PageContent":"String","RegistrationStart":"0001-01-01T00:00:00.0000000","RegistrationEnd":"0001-01-01T00:00:00.0000000","RegistrationCount":0,"Active":false}]}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"EventRegistration":[{"EventRegistrationId":"00000000000000000000000000000000","Description":"String","Summary":"String","PageContent":"String","RegistrationStart":"0001-01-01T00:00:00.0000000","RegistrationEnd":"0001-01-01T00:00:00.0000000","RegistrationCount":0,"Active":false}]}