NAV

<back to all web services

NAVOpenOrderGetList

The following routes are available for this service:
GET/pendingOrders/{BeeNumber}/{Days}
GET/pendingOrders/{BeeNumber}/{Days}/{Status}

export class NAVOpenOrderViewModel
{
    public orderNumber?: string;
    public orderId?: number;
    public orderStatusId?: number;
    public orderStatus?: string;
    public created?: string;
    public orderType?: string;
    public subtotal?: number;
    public shippingCost?: number;
    public finalTax?: number;
    public commissionableValueEarned?: number;
    public qualifyingValueEarned?: number;
    public campaignOfOrder?: string;

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

export class NAVOpenOrderGetListResponse extends GetListResponse<NAVOpenOrderViewModel>
{

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

export class NAVOpenOrderGetList implements IGet
{
    public beeNumber?: number;
    public days?: number;
    public status?: string;

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

export class GetListResponse<TEntity>
{
    public items?: TEntity[];
    public responseStatus?: ResponseStatus;

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

TypeScript NAVOpenOrderGetList 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 /pendingOrders/{BeeNumber}/{Days} HTTP/1.1 
Host: extensions.avon.ca 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	items: 
	[
		{
			orderNumber: String,
			orderId: 0,
			orderStatusId: 0,
			orderStatus: String,
			created: 0001-01-01T00:00:00,
			orderType: String,
			subtotal: 0,
			shippingCost: 0,
			finalTax: 0,
			commissionableValueEarned: 0,
			qualifyingValueEarned: 0,
			campaignOfOrder: String
		}
	],
	responseStatus: 
	{
		errorCode: String,
		message: String,
		stackTrace: String,
		errors: 
		[
			{
				errorCode: String,
				fieldName: String,
				message: String,
				meta: 
				{
					String: String
				}
			}
		],
		meta: 
		{
			String: String
		}
	}
}