GET api/CheckInsRest/merchant/{id}/CustomerDetails
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CheckInCustomersName | Description | Type | Additional information |
---|---|---|---|
CustomerID | integer |
None. |
|
CustomerFirstName | string |
None. |
|
CustomerLastName | string |
None. |
|
Image | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "CustomerID": 1, "CustomerFirstName": "sample string 2", "CustomerLastName": "sample string 3", "Image": "sample string 4" }, { "CustomerID": 1, "CustomerFirstName": "sample string 2", "CustomerLastName": "sample string 3", "Image": "sample string 4" } ]
application/xml, text/xml
Sample:
<ArrayOfCheckInCustomers xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/InnoBank.Models"> <CheckInCustomers> <CustomerFirstName>sample string 2</CustomerFirstName> <CustomerID>1</CustomerID> <CustomerLastName>sample string 3</CustomerLastName> <Image>sample string 4</Image> </CheckInCustomers> <CheckInCustomers> <CustomerFirstName>sample string 2</CustomerFirstName> <CustomerID>1</CustomerID> <CustomerLastName>sample string 3</CustomerLastName> <Image>sample string 4</Image> </CheckInCustomers> </ArrayOfCheckInCustomers>