| GET,OPTIONS | /v1/coverage/self/shifts |
|---|
export class CoverageSelfShift
{
public WorkerScheduleItemID: number;
public Label: string;
public Site: string;
public Role: string;
public constructor(init?: Partial<CoverageSelfShift>) { (Object as any).assign(this, init); }
}
export class CoverageSelfShiftsResponse
{
public ResponseStatus: ResponseStatus;
public Shifts: CoverageSelfShift[] = [];
public constructor(init?: Partial<CoverageSelfShiftsResponse>) { (Object as any).assign(this, init); }
}
export class CoverageSelfShiftsRequest
{
public ContactID: number;
public constructor(init?: Partial<CoverageSelfShiftsRequest>) { (Object as any).assign(this, init); }
}
TypeScript CoverageSelfShiftsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/coverage/self/shifts HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"Shifts":[{"WorkerScheduleItemID":0,"Label":"String","Site":"String","Role":"String"}]}