GET
/
v1
/
user
/
tenant
/
{tenantId}
/
currencies
Get current tenant currencies
curl --request GET \
  --url https://staging.api.us.aptlydone.com/auth/v1/user/tenant/{tenantId}/currencies \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 200,
  "timestamp": "2025-06-25T06:16:48.664Z",
  "message": "Success",
  "data": [
    {
      "currency": "Euro",
      "currencyCode": "EUR"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tenantId
string
required

Response

200 - application/json

Default currency list fetched successfully

The response is of type object.