GET api/GetCustomerSearch?UserID={UserID}&Name={Name}&Mobile={Mobile}&Email={Email}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | string |
Required |
|
| Name | string |
Required |
|
| Mobile | string |
Required |
|
| string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Customer| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Name | string |
None. |
|
| Mobile | string |
None. |
|
| string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Name": "sample string 2",
"Mobile": "sample string 3",
"Email": "sample string 4"
},
{
"ID": 1,
"Name": "sample string 2",
"Mobile": "sample string 3",
"Email": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NEXABIT.TMS.BO">
<Customer>
<Email>sample string 4</Email>
<ID>1</ID>
<Mobile>sample string 3</Mobile>
<Name>sample string 2</Name>
</Customer>
<Customer>
<Email>sample string 4</Email>
<ID>1</ID>
<Mobile>sample string 3</Mobile>
<Name>sample string 2</Name>
</Customer>
</ArrayOfCustomer>