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
import Foundation
import ServiceStack

public class CallCenterProfileSalesHistoryGetList : IGet, Codable
{
    public var accountNumber:Double?
    public var campaign:String?

    required public init(){}
}

public class CallCenterProfileSalesHistoryGetListResponse : GetListResponse<CallCenterProfileSalesHistoryGetListViewModel>
{
    required public init(){ super.init() }

    required public init(from decoder: Decoder) throws {
        try super.init(from: decoder)
    }

    public override func encode(to encoder: Encoder) throws {
        try super.encode(to: encoder)
    }
}

public class GetListResponse<TEntity : Codable> : Codable
{
    public var items:[TEntity] = []
    public var responseStatus:ResponseStatus?

    required public init(){}
}

public class CallCenterProfileSalesHistoryGetListViewModel : Codable
{
    public var accountNumber:Double?
    public var year:Int?
    public var campaign:String?
    public var campaignSales:Double?
    public var awardSales:Double?
    public var netSales:Double?
    public var orderBuilders:Double?
    public var salesAids:Double?
    public var demoSales:Double?
    public var returns:Double?
    public var leadership:Double?
    public var earningsPercent:Double?
    public var freeAmount:Double?
    public var customerPrice:Double?
    public var salesAidsOrder:Double?
    public var orderSize:Double?

    required public init(){}
}


Swift 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
		}
	}
}