| Requires any of the roles: | Worker, Agent, Administrator |
| GET | /v1/EventRegistrationMenu |
|---|
"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 EventRegistrationMenuRequest {
constructor(init) { Object.assign(this, init) }
}
JavaScript EventRegistrationMenuRequest 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.
GET /v1/EventRegistrationMenu HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/jsonl
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}]}