This function will verify that the touch key is authorized for the listed ATM. INPUTS==> ATM ENTITY, TOUCH KEY ID. RETURN==> (result)
None.
VerifyAtmDispatcherRequest
VerifyAtmDispatcherRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| AtmEntity |
Entity value for the ATM (database value) |
integer |
Required |
| TouchkeyId |
Touch Key ID of the technician |
string |
Required |
{
"AtmEntity": 1,
"TouchkeyId": "sample string 2"
}
<VerifyAtmDispatcherRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Requests.Dispatcher"> <AtmEntity>1</AtmEntity> <TouchkeyId>sample string 2</TouchkeyId> </VerifyAtmDispatcherRequest>
Sample not available.
VerifyAtmDispatcherResponse
VerifyAtmDispatcherResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Header | ResponseHeader |
None. |
|
| Body | VerifyAtmDispatcherResponseBody |
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 |
|---|---|---|---|
| AtmDispatcherVerified |
Flag to show if ATM matches the dispatcher |
boolean |
None. |
{
"Header": {
"Message": "sample string 1",
"StatusCode": 0,
"Status": "sample string 2",
"ErrorId": "sample string 3"
},
"Body": {
"AtmDispatcherVerified": true
}
}
<VerifyAtmDispatcherResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses.Dispatcher">
<Body xmlns:d2p1="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses.Dispatcher" xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses">
<d2p1:AtmDispatcherVerified>true</d2p1:AtmDispatcherVerified>
</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>
</VerifyAtmDispatcherResponse>