| GET,OPTIONS | /v1/records/disposition/batches |
|---|
"use strict";
export class DispositionBatchDto {
/** @param {{BatchId?:number,BatchKey?:string,Title?:string,Status?:string,MethodSummary?:string,CreatedByLbl?:string,CreatedLabel?:string,ItemsJson?:string,ChainJson?:string,ReturnReason?:string,CertJson?:string,LogJson?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
BatchId;
/** @type {string} */
BatchKey;
/** @type {string} */
Title;
/** @type {string} */
Status;
/** @type {string} */
MethodSummary;
/** @type {string} */
CreatedByLbl;
/** @type {string} */
CreatedLabel;
/** @type {string} */
ItemsJson;
/** @type {string} */
ChainJson;
/** @type {string} */
ReturnReason;
/** @type {string} */
CertJson;
/** @type {string} */
LogJson;
}
export class DispositionBatchesResponse {
/** @param {{ResponseStatus?:ResponseStatus,Batches?:DispositionBatchDto[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {ResponseStatus} */
ResponseStatus;
/** @type {DispositionBatchDto[]} */
Batches = [];
}
export class DispositionBatchesRequest {
constructor(init) { Object.assign(this, init) }
}
JavaScript DispositionBatchesRequest DTOs
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.
GET /v1/records/disposition/batches HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
},
Batches:
[
{
BatchId: 0,
BatchKey: String,
Title: String,
Status: String,
MethodSummary: String,
CreatedByLbl: String,
CreatedLabel: String,
ItemsJson: String,
ChainJson: String,
ReturnReason: String,
CertJson: String,
LogJson: String
}
]
}