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": "7554dd92-0a3e-47b0-94ad-f213d7a682f4",
  "object": "display_currency",
  "currency": "gbp",
  "current_exchange_rate": 0.75,
  "created_at": 1767909695,
  "updated_at": 1767909695
}

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.