Skip to main content
POST
/
v1
/
display_currencies
Create
curl --request POST \
  --url https://{defaultHost}/v1/display_currencies \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "display_currency": {
    "currency": "gbp"
  }
}
'
{
  "id": "b50ddb69-840d-488f-8de8-e866d2ba627e",
  "object": "display_currency",
  "currency": "gbp",
  "current_exchange_rate": 0.75,
  "created_at": 1771429862,
  "updated_at": 1771429862
}

Authorizations

Authorization
string
header
required

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

Body

application/json
display_currency
object

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

currency
string

Three-letter ISO currency code, in lowercase.

current_exchange_rate
number

The current exchange rate from the account's default currency to this display currency.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.