This function will return the information for the specified touch key record. INPUTS==> TOUCH KEY ID. RETURN==> touch key information (TOUCH KEY ID, ACCESSOR ID, TYPE, ...)
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Touch Key ID |
string |
Required |
None.
GetTouchKeyManagerResponse
GetTouchKeyManagerResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Header | ResponseHeader |
None. |
|
| Body | GetTouchKeyManagerResponseBody |
None. |
| Name | Description | Type | Additional information |
|---|---|---|---|
| Message |
Message |
string |
None. |
| StatusCode |
Status code |
ResponseStatus |
None. |
| Status |
Status |
string |
None. |
| ErrorId |
Error id |
string |
None. |
| Name | Description | Type | Additional information |
|---|---|---|---|
| Accessor |
Accessor record assigned to the touch key |
AccessorViewModel |
None. |
{
"Header": {
"Message": "sample string 1",
"StatusCode": 0,
"Status": "sample string 2",
"ErrorId": "sample string 3"
},
"Body": {
"Accessor": {
"AccessorId": 1,
"FirstName": "sample string 2",
"MiddleName": "sample string 3",
"LastName": "sample string 4",
"EmployeeId": "sample string 5"
}
}
}
<GetTouchKeyManagerResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses.TouchKey">
<Body xmlns:d2p1="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses.TouchKey" xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses">
<d2p1:Accessor xmlns:d3p1="http://schemas.datacontract.org/2004/07/SaG.API.Models">
<d3p1:AccessorId>1</d3p1:AccessorId>
<d3p1:EmployeeId>sample string 5</d3p1:EmployeeId>
<d3p1:FirstName>sample string 2</d3p1:FirstName>
<d3p1:LastName>sample string 4</d3p1:LastName>
<d3p1:MiddleName>sample string 3</d3p1:MiddleName>
</d2p1:Accessor>
</Body>
<Header xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses">
<ErrorId>sample string 3</ErrorId>
<Message>sample string 1</Message>
<Status>sample string 2</Status>
<StatusCode>Ok</StatusCode>
</Header>
</GetTouchKeyManagerResponse>