None.
| Name | Description | Type | Additional information |
|---|---|---|---|
| TechnicianId |
Atm id |
integer |
Required |
| AtmId |
Lock ID of the ATM to be opened |
string |
Required |
| Date |
Operation date. Valid formats ("dd/MM/yyyy", "dd-MM-yyyy", "ddMMyyyy") |
string |
Required |
| Hour |
Operation hour |
integer |
Required Range: inclusive between 0 and 23 |
| TimeBlock |
Time block. Valid values (4, 8, 12, 24) |
integer |
Required |
{
"TechnicianId": 1,
"AtmId": "sample string 2",
"Date": "sample string 3",
"Hour": 4,
"TimeBlock": 5
}
<SetClockNoKeyCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaG.OTC.API.Models.Requests.ACommands"> <AtmId>sample string 2</AtmId> <Date>sample string 3</Date> <Hour>4</Hour> <TechnicianId>1</TechnicianId> <TimeBlock>5</TimeBlock> </SetClockNoKeyCode>
Sample not available.
| Name | Description | Type | Additional information |
|---|---|---|---|
| Header |
Operation code response message header. |
ResponseHeader |
None. |
| Body |
Operation code response message body. |
OperationCodeResponseBody |
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 |
|---|---|---|---|
| OperationCode |
Operation code |
string |
None. |
{
"Header": {
"Message": "sample string 1",
"StatusCode": 0,
"Status": "sample string 2",
"ErrorId": "sample string 3"
},
"Body": {
"OperationCode": "sample string 1"
}
}
<OperationCodeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaG.OTC.API.Models.Responses.OpCode">
<Body>
<OperationCode>sample string 1</OperationCode>
</Body>
<Header xmlns:d2p1="http://schemas.datacontract.org/2004/07/SaG.OTC.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>
</OperationCodeResponse>