POST api/Customer/GetCustomerId
Request Information
URI Parameters
None.
Body Parameters
CustomerIdRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| QRCode | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"QRCode": "sample string 1"
}
application/xml, text/xml
Sample:
<CustomerIdRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TabPromo.TabletPos.Web.Service.Models.Api.Customer.Request"> <QRCode>sample string 1</QRCode> </CustomerIdRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CustomerIdResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseResult | ResponseResult |
None. |
|
| response | CustomerIdDataResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseResult": {
"Result": true,
"ExceptionDetail": "sample string 2"
},
"response": {
"ATAExpressID": "sample string 1"
}
}
application/xml, text/xml
Sample:
<CustomerIdResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TabPromo.TabletPos.Web.Service.Models.Api.Customer.Response">
<ResponseResult xmlns:d2p1="http://schemas.datacontract.org/2004/07/TabPromo.TabletPos.Web.Service.Models.Api">
<d2p1:ExceptionDetail>sample string 2</d2p1:ExceptionDetail>
<d2p1:Result>true</d2p1:Result>
</ResponseResult>
<response>
<ATAExpressID>sample string 1</ATAExpressID>
</response>
</CustomerIdResponse>