GET
api/v1/get-all-customer-history?clientId={clientId}&sellerId={sellerId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId | integer |
Required |
|
| sellerId | integer |
Required |
Response Information
Description:
Return type: Collection of CustomerHistory
Response Formats
application/json, text/json
[
{
"ModelName": "sample string 1",
"Counts": 2,
"NoOfCustomer": "sample string 3"
},
{
"ModelName": "sample string 1",
"Counts": 2,
"NoOfCustomer": "sample string 3"
}
]
text/html
[{"ModelName":"sample string 1","Counts":2,"NoOfCustomer":"sample string 3"},{"ModelName":"sample string 1","Counts":2,"NoOfCustomer":"sample string 3"}]
application/xml, text/xml
<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>
