3.07 List of measure units
Connection URL
TEST URL | http://nap.dev.icash.bg/clientapi/v1/get-measure-units |
( AL ) PRODUCTION URL | https://v1.icash.al/clientapi/v1/get-measure-units |
( BG ) PRODUCTION URL | https://v5.icash.bg/clientapi/v1/get-measure-units |
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 |
JSON response on success
Param | Description | Field type | Required |
nonce | Nonce from request | Integer | YES |
status | Request status | Integer
1 – successful |
YES |
data | Списък мерни еденици | Array of Item |
Structure of type “Item”
Param | Description | Field type | Required |
id | Indentificator | Integer | YES |
name | Name | String | YES |
Example:
{ „nonce“: „1552998930“, „status“: 1, „data“: [ { „id“: 1, „value“: „pcs“ }, { „id“: 2, „value“: „kg“ } ] } |
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 on unsuccess:
{ „nonce“: „1552990901“, „status“: 0, „error_message“: „Session expired“ } |