NAV

<back to all web services

NAVOpenOrderGetList

The following routes are available for this service:
GET/pendingOrders/{BeeNumber}/{Days}
GET/pendingOrders/{BeeNumber}/{Days}/{Status}
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using NAV.ServiceModel;

namespace NAV.ServiceModel
{
    public partial class GetListResponse<TEntity>
    {
        public GetListResponse()
        {
            Items = new List<TEntity>{};
        }

        public virtual List<TEntity> Items { get; set; }
        public virtual ResponseStatus ResponseStatus { get; set; }
    }

    public partial class NAVOpenOrderGetList
        : IGet
    {
        public virtual decimal BeeNumber { get; set; }
        public virtual int Days { get; set; }
        public virtual string Status { get; set; }
    }

    public partial class NAVOpenOrderGetListResponse
        : GetListResponse<NAVOpenOrderViewModel>
    {
    }

    public partial class NAVOpenOrderViewModel
    {
        public virtual string OrderNumber { get; set; }
        public virtual int OrderId { get; set; }
        public virtual int OrderStatusId { get; set; }
        public virtual string OrderStatus { get; set; }
        public virtual DateTime Created { get; set; }
        public virtual string OrderType { get; set; }
        public virtual decimal Subtotal { get; set; }
        public virtual decimal ShippingCost { get; set; }
        public virtual decimal FinalTax { get; set; }
        public virtual decimal CommissionableValueEarned { get; set; }
        public virtual decimal QualifyingValueEarned { get; set; }
        public virtual string CampaignOfOrder { get; set; }
    }

}

C# 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
		}
	}
}