GET api/v1/get-top-customers-order-status?clientId={clientId}&sellerId={sellerId}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
clientId

integer

Required

sellerId

integer

Required

Response Information

Description:

Return type: TopCustomerOrderStatusResponse

Response Formats
{
  "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"
    }
  ]
}
{"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"}]}
<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>