GET
api/v1/get-customer-search-details-on-dashboard?clientId={clientId}&sellerId={sellerId}&fromDate={fromDate}&toDate={toDate}&q={q}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
clientId | integer |
Required |
|
sellerId | integer |
Required |
|
fromDate | date |
Required |
|
toDate | date |
Required |
|
q | string |
Required |
Response Information
Description:
Return type: CustomerSearchDetailsSummaryResponse
Response Formats
application/json, text/json
{ "CustomerSearchDetailsSummaryList": [ { "CustomerName": "sample string 1", "EmailAddress": "sample string 2", "Phone": "sample string 3", "SearchItem": "sample string 4", "CreatedOn": "2025-07-08T10:30:50.1698946+00:00" }, { "CustomerName": "sample string 1", "EmailAddress": "sample string 2", "Phone": "sample string 3", "SearchItem": "sample string 4", "CreatedOn": "2025-07-08T10:30:50.1698946+00:00" } ] }
text/html
{"CustomerSearchDetailsSummaryList":[{"CustomerName":"sample string 1","EmailAddress":"sample string 2","Phone":"sample string 3","SearchItem":"sample string 4","CreatedOn":"2025-07-08T10:30:50.1698946+00:00"},{"CustomerName":"sample string 1","EmailAddress":"sample string 2","Phone":"sample string 3","SearchItem":"sample string 4","CreatedOn":"2025-07-08T10:30:50.1698946+00:00"}]}
application/xml, text/xml
<CustomerSearchDetailsSummaryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Report"> <CustomerSearchDetailsSummaryList> <CustomerSearchDetailsSummary> <CreatedOn>2025-07-08T10:30:50.1698946+00:00</CreatedOn> <CustomerName>sample string 1</CustomerName> <EmailAddress>sample string 2</EmailAddress> <Phone>sample string 3</Phone> <SearchItem>sample string 4</SearchItem> </CustomerSearchDetailsSummary> <CustomerSearchDetailsSummary> <CreatedOn>2025-07-08T10:30:50.1698946+00:00</CreatedOn> <CustomerName>sample string 1</CustomerName> <EmailAddress>sample string 2</EmailAddress> <Phone>sample string 3</Phone> <SearchItem>sample string 4</SearchItem> </CustomerSearchDetailsSummary> </CustomerSearchDetailsSummaryList> </CustomerSearchDetailsSummaryResponse>