GET api/v1/get-all-customer-history?clientId={clientId}&sellerId={sellerId}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
clientId

integer

Required

sellerId

integer

Required

Response Information

Description:

Return type: Collection of CustomerHistory

Response Formats
[
  {
    "ModelName": "sample string 1",
    "Counts": 2,
    "NoOfCustomer": "sample string 3"
  },
  {
    "ModelName": "sample string 1",
    "Counts": 2,
    "NoOfCustomer": "sample string 3"
  }
]
[{"ModelName":"sample string 1","Counts":2,"NoOfCustomer":"sample string 3"},{"ModelName":"sample string 1","Counts":2,"NoOfCustomer":"sample string 3"}]
<ArrayOfCustomerHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Customer">
  <CustomerHistory>
    <Counts>2</Counts>
    <ModelName>sample string 1</ModelName>
    <NoOfCustomer>sample string 3</NoOfCustomer>
  </CustomerHistory>
  <CustomerHistory>
    <Counts>2</Counts>
    <ModelName>sample string 1</ModelName>
    <NoOfCustomer>sample string 3</NoOfCustomer>
  </CustomerHistory>
</ArrayOfCustomerHistory>