Trendsic Platform Service

<back to all web services

PoolsRequest

Requires Authentication
The following routes are available for this service:
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) }
}

JavaScript PoolsRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

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: 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
		}
	},
	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
		}
	]
}