Get currency
GET
GET
http://api.atzcrm.com/v1/currenciesRetrieve the details of all currency.
Request
GET
GET /v1/currencies
Headers
- Authorization: Bearer your_access_token
Response
200
Body
- currency_id
integer
Example: 1
- code
string
Example: USD
- country
string
Example: Albania
- currency
string
Example: Dollars
- symbol
string
Example: $
401
Body
- unauthorised
Response Example
[
{
"currency_id": 1,
"code": "ALL",
"country": "Albania",
"currency": "Leke",
"symbol": "Lek"
},
{
"currency_id": 2,
"code": "USD",
"country": "America",
"currency": "Dollars",
"symbol": "$"
}
]
}