Manage currencies
Updated on 08 Sep 2023
Currency management is part of Initial System Configuration.
In the Administrator’s dashboard, in the Currencies section, an Admin can view all the created in the system currencies and add new ones.
APIs for Currency management
API name | Endpoint | Role | Request values | Response values to save |
Create new currency | POST /currencies | Administrator | { “code”: “GBP”, “digitalCode”: “926”, “symbol”: “£”, “name”: “British Pound Sterling”, “description”: “British Pound Sterling”, “fraction”: 100, “snPrefix”: “GBP”, “active”: true }
| id |
Get list of currencies | GET /v1/currencies | Administrator | ||
Update a currency | PATCH /v1/currencies/{currencyId} | Administrator | { “name”: “British Pound Sterling”, “description”: “British Pound Sterling”, “active”: true } | currencyId=id from GET /v1/currencies or POST /v1/currencies |