Get Assigned Touchkeys.
None.
GetAssignedTouchkeysRequest
BrowseAssignedTouchkeysRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| AccessorId |
Accessor ID |
integer |
Required |
| TypeKey |
Type of touch key |
string |
Required |
{
"AccessorId": 1,
"TypeKey": "sample string 2"
}
<BrowseAssignedTouchkeysRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Requests.TouchKey"> <AccessorId>1</AccessorId> <TypeKey>sample string 2</TypeKey> </BrowseAssignedTouchkeysRequest>
Sample not available.
GetAssignedTouchkeysResponse
BrowseAssignedTouchkeysResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Header |
Browse Assigned Touchkeys Response message header. |
ResponseHeader |
None. |
| Body |
Browse Assigned Touchkeys Response message body. |
BrowseAssignedTouchkeysResponseBody |
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 |
|---|---|---|---|
| AssignedTouchKeys |
List of assigned touch keys for that accessor (user) |
Collection of string |
None. |
{
"Header": {
"Message": "sample string 1",
"StatusCode": 0,
"Status": "sample string 2",
"ErrorId": "sample string 3"
},
"Body": {
"AssignedTouchKeys": [
"sample string 1",
"sample string 2"
]
}
}
<BrowseAssignedTouchkeysResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses.TouchKey">
<Body>
<AssignedTouchKeys xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>sample string 1</d3p1:string>
<d3p1:string>sample string 2</d3p1:string>
</AssignedTouchKeys>
</Body>
<Header xmlns:d2p1="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses">
<d2p1:ErrorId>sample string 3</d2p1:ErrorId>
<d2p1:Message>sample string 1</d2p1:Message>
<d2p1:Status>sample string 2</d2p1:Status>
<d2p1:StatusCode>Ok</d2p1:StatusCode>
</Header>
</BrowseAssignedTouchkeysResponse>