NAV

<back to all web services

CallCenterProfileSalesHistoryGetList

The following routes are available for this service:
GET/call-center/profiles/{AccountNumber}/sales-history/{Campaign}
GET/call-center/profiles/{AccountNumber}/sales-history

export class CallCenterProfileSalesHistoryGetListViewModel
{
    public accountNumber?: number;
    public year?: number;
    public campaign?: string;
    public campaignSales?: number;
    public awardSales?: number;
    public netSales?: number;
    public orderBuilders?: number;
    public salesAids?: number;
    public demoSales?: number;
    public returns?: number;
    public leadership?: number;
    public earningsPercent?: number;
    public freeAmount?: number;
    public customerPrice?: number;
    public salesAidsOrder?: number;
    public orderSize?: number;

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

export class CallCenterProfileSalesHistoryGetListResponse extends GetListResponse<CallCenterProfileSalesHistoryGetListViewModel>
{

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

export class CallCenterProfileSalesHistoryGetList implements IGet
{
    public accountNumber?: number;
    public campaign?: string;

    public constructor(init?: Partial<CallCenterProfileSalesHistoryGetList>) { (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 CallCenterProfileSalesHistoryGetList 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 /call-center/profiles/{AccountNumber}/sales-history/{Campaign} HTTP/1.1 
Host: extensions.avon.ca 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	items: 
	[
		{
			accountNumber: 0,
			year: 0,
			campaign: String,
			campaignSales: 0,
			awardSales: 0,
			netSales: 0,
			orderBuilders: 0,
			salesAids: 0,
			demoSales: 0,
			returns: 0,
			leadership: 0,
			earningsPercent: 0,
			freeAmount: 0,
			customerPrice: 0,
			salesAidsOrder: 0,
			orderSize: 0
		}
	],
	responseStatus: 
	{
		errorCode: String,
		message: String,
		stackTrace: String,
		errors: 
		[
			{
				errorCode: String,
				fieldName: String,
				message: String,
				meta: 
				{
					String: String
				}
			}
		],
		meta: 
		{
			String: String
		}
	}
}