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
integerExample: 1
- code
stringExample: USD
- country
stringExample: Albania
- currency
stringExample: Dollars
- symbol
stringExample: $
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": "$"
}
]
}