POST api/Customer/GetCustomerByMobilePhone
Request Information
URI Parameters
None.
Body Parameters
CustomerInfoRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| MobilePhone | string |
None. |
|
| IsInfoPoint | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"MobilePhone": "sample string 1",
"IsInfoPoint": true
}
application/xml, text/xml
Sample:
<CustomerInfoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Big.Viva.Core.Domain.DTO"> <IsInfoPoint>true</IsInfoPoint> <MobilePhone>sample string 1</MobilePhone> </CustomerInfoRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | boolean |
None. |
|
| Code | integer |
None. |
|
| Message | string |
None. |
|
| Puntos | string |
None. |
|
| session_id | string |
None. |
|
| Data | DataTable |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": true,
"Code": 2,
"Message": "sample string 3",
"Puntos": "sample string 4",
"session_id": "sample string 5",
"Data": null
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Big.Viva.Core.Domain.DTO"> <Code>2</Code> <Data i:nil="true" /> <Message>sample string 3</Message> <Puntos>sample string 4</Puntos> <Result>true</Result> <session_id>sample string 5</session_id> </Response>