Trendsic Platform Service

<back to all web services

AvailableFactFinderCodeRequest

Requires Authentication
Requires any of the roles:Worker, Agent, Administrator, Agent, Administrator
The following routes are available for this service:
GET,DELETE,OPTIONS/v1/AvailableFactFinderCode/{AgentId}

export class FactFinderCode
{
    public Id: number;
    public AgentId: number;
    public SerialNumber: number;
    public ShipDate: string;
    public TrackingNumber: string;
    public CreatedDate: string;
    public ContactId: number;
    public AssignedDate: string;
    public AgentName: string;
    public ContactName: string;

    public constructor(init?: Partial<FactFinderCode>) { (Object as any).assign(this, init); }
}

export class FactFinderCodeResponse
{
    public ResponseStatus: ResponseStatus;
    public FactFinderCode: FactFinderCode[] = [];

    public constructor(init?: Partial<FactFinderCodeResponse>) { (Object as any).assign(this, init); }
}

export class AvailableFactFinderCodeRequest
{
    public AgentId: number;
    public StartCode: number;
    public EndCode: number;
    public TrackingNumber: string;
    public ShipDate: string;

    public constructor(init?: Partial<AvailableFactFinderCodeRequest>) { (Object as any).assign(this, init); }
}

TypeScript AvailableFactFinderCodeRequest 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/AvailableFactFinderCode/{AgentId} 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
		}
	},
	FactFinderCode: 
	[
		{
			Id: 0,
			AgentId: 0,
			SerialNumber: 0,
			ShipDate: 0001-01-01,
			TrackingNumber: String,
			CreatedDate: 0001-01-01,
			ContactId: 0,
			AssignedDate: 0001-01-01,
			AgentName: String,
			ContactName: String
		}
	]
}