| GET,OPTIONS | /v1/records/logistics/pools |
|---|
"use strict";
export class RecordsPoolDto {
/** @param {{PoolId?:number,PoolKey?:string,Site?:string,Method?:string,Icon?:string,Note?:string,ItemsJson?:string,Boxes?:number,Pages?:number,WeightLbs?:number,ThBoxes?:number,ThWeight?:number,Status?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
PoolId;
/** @type {string} */
PoolKey;
/** @type {string} */
Site;
/** @type {string} */
Method;
/** @type {string} */
Icon;
/** @type {string} */
Note;
/** @type {string} */
ItemsJson;
/** @type {number} */
Boxes;
/** @type {number} */
Pages;
/** @type {number} */
WeightLbs;
/** @type {number} */
ThBoxes;
/** @type {number} */
ThWeight;
/** @type {string} */
Status;
}
export class PoolsResponse {
/** @param {{ResponseStatus?:ResponseStatus,Pools?:RecordsPoolDto[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {ResponseStatus} */
ResponseStatus;
/** @type {RecordsPoolDto[]} */
Pools = [];
}
export class PoolsRequest {
constructor(init) { Object.assign(this, init) }
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/records/logistics/pools HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"Pools":[{"PoolId":0,"PoolKey":"String","Site":"String","Method":"String","Icon":"String","Note":"String","ItemsJson":"String","Boxes":0,"Pages":0,"WeightLbs":0,"ThBoxes":0,"ThWeight":0,"Status":"String"}]}