Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://staging.api.us.aptlydone.com/auth/v1/tenants/{id}/currency-rates \
--header 'Authorization: Bearer <token>'{
"statusCode": 200,
"timestamp": "2025-06-25T06:16:48.664Z",
"message": "Success",
"data": [
{
"currency": "Euro",
"currencyCode": "EUR",
"rate": 0.85
}
]
}curl --request GET \
--url https://staging.api.us.aptlydone.com/auth/v1/tenants/{id}/currency-rates \
--header 'Authorization: Bearer <token>'{
"statusCode": 200,
"timestamp": "2025-06-25T06:16:48.664Z",
"message": "Success",
"data": [
{
"currency": "Euro",
"currencyCode": "EUR",
"rate": 0.85
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Currency rates fetched successfully