- A list of cashier names and phone numbers is sent to Billon via an encryped email
- A cashier inputs first name, last name and phone number into the PC application
- PC application requests a registration of a cashier in the Billon API
- Billon API verifies that the data is the same as in the received list of cashier (point 1)
- PC application receives cashier login from Billon API and displays it on the screen
- Billon API sends the password to the given phone number
In the test environment, the cashier password is always set to 12345678.
The HTTP request should be sent via the POST method to: https://billon.io/request/moneykey/createCashier
Request: Registration of a new cashier
Parametr | Data type | Description |
Timestamp | String | GMT time in YYYYMMDDhhmmss form – for example 20171031104530. If timestamp has already been used, API will return error 13. |
Sale_Point_ID | String | Sale point ID |
Cashier_First_Name | String | Cashier first name |
Cashier_Last_Name | String | Cashier last name |
Cashier_Telephone_No | String | Phone number. Format: +CCXXXXXXXXX |
Cashier_Document_ID | String | Identity document ID |
Cashier_Address_1 | String | First line of address of the sale point, in which the cashier is working |
Cashier_Address_2 | String | Second line of address of the sale point, in which the cashier is working |
Postal_Code | String | Postal code of the sale point, in which the cashier is working |
City | String | City of the sale point, in which the cashier is working |
Hash | String | The method for generating this parameter is described in ‘Security’ page |
Response: Cashier login
Parameter | Data type | Description |
Timestamp | String | GMT time in YYYYMMDDhhmmss form – for example 20171031104530. If timestamp has already been used, API will return error 13. |
Cashier_Login | String | Cashier login. In case of an error the parameter is empty |
ERR_Code | String | Error code |
ERR_Description | String | Description of the error code |
Hash | String | The method for calculcating this parameter is described on ‘Security’ page |