3.18 Finalize/print operation
Connection URL
TEST URL | http://nap.dev.icash.bg/clientapi/v1/print-operation |
( AL ) PRODUCTION URL | https://v1.icash.al/clientapi/v1/print-operation |
( BG ) PRODUCTION URL | https://v5.icash.bg/clientapi/v1/print-operation |
POST REQUEST
Param | Description | Field type | Required |
api_key | API Key | String | YES |
nonce | Nonce | Integer | YES |
signature | Signature | String | YES |
ses | Session indentificator | String | YES |
OperationID | Operation ID | Integer | YES |
PayTypeID | Pay type ID | Integer | YES |
JSON response on success
Param | Description | Field type | Required |
nonce | Nonce from request | Integer | YES |
status | Request status | Integer
1 – successful |
YES |
data | Operation ID | Integer | YES |
Example:
{ „nonce“: „1553078075“, „status“: 1, „data“: 56074 } |
JSON response on unsuccess
Param | Description | Field type | Required |
nonce | Nonce from request | Integer | YES |
status | Request status | Integer
0 – unsuccess request |
YES |
error_message | Error Description | String | YES |
Example:
{ „nonce“: „1553077168“, „status“: 0, „error_message“: „Wrong value for OperationID“ } |