POST api/v1/customer/searchreferences
Request Information
URI Parameters
None.
Body Parameters
CustomerReferenceSearch| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CompanyId | integer |
None. |
|
| Search | string |
None. |
|
| Status | boolean |
None. |
|
| Skip | integer |
None. |
|
| Take | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CompanyId": 2,
"Search": "sample string 3",
"Status": true,
"Skip": 5,
"Take": 6
}
application/xml, text/xml
Sample:
<CustomerReferenceSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Customers.Search"> <CompanyId>2</CompanyId> <Id>1</Id> <Search>sample string 3</Search> <Skip>5</Skip> <Status>true</Status> <Take>6</Take> </CustomerReferenceSearch>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModelOfListOfCustomerReference| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | Collection of CustomerReference |
None. |
|
| Pagination | Pagination |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.