GET
api/v1/get-top-customers-order-status?clientId={clientId}&sellerId={sellerId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
clientId | integer |
Required |
|
sellerId | integer |
Required |
Response Information
Description:
Return type: TopCustomerOrderStatusResponse
Response Formats
application/json, text/json
{ "TopCustomersOrderStatusList": [ { "OrderAmount": 1.0, "CustomerId": 2, "Name": "sample string 3", "Status": "sample string 4" }, { "OrderAmount": 1.0, "CustomerId": 2, "Name": "sample string 3", "Status": "sample string 4" } ] }
text/html
{"TopCustomersOrderStatusList":[{"OrderAmount":1.0,"CustomerId":2,"Name":"sample string 3","Status":"sample string 4"},{"OrderAmount":1.0,"CustomerId":2,"Name":"sample string 3","Status":"sample string 4"}]}
application/xml, text/xml
<TopCustomerOrderStatusResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Report"> <TopCustomersOrderStatusList> <TopCustomersOrderStatus> <CustomerId>2</CustomerId> <Name>sample string 3</Name> <OrderAmount>1</OrderAmount> <Status>sample string 4</Status> </TopCustomersOrderStatus> <TopCustomersOrderStatus> <CustomerId>2</CustomerId> <Name>sample string 3</Name> <OrderAmount>1</OrderAmount> <Status>sample string 4</Status> </TopCustomersOrderStatus> </TopCustomersOrderStatusList> </TopCustomerOrderStatusResponse>