Skip to main content

Attribute type

currency

Use it for

Money amounts such as deal value, budget, ARR, or contract size.

Request value

Send { "amount": number, "currencyCode": "USD" } using an ISO currency code.
{
  "fields": {
    "amount": {
      "amount": 12000,
      "currencyCode": "USD"
    }
  }
}

Returned shape

Returns { "amount", "currencyCode" }.

Example response

{
  "fields": {
    "amount": {
      "amount": 12000,
      "currencyCode": "USD"
    }
  }
}