Developers
API ReferenceCurrency Dictionary

Creates a CurrencyDictionary resource.

POST
/finance/currency-dictionaries

Creates a CurrencyDictionary resource.

Authorization<token>

Value for the Authorization header parameter.

In: header

Request Body

The new CurrencyDictionary resource

TypeScript Definitions

Use the request body type in TypeScript.

name*string
Length3 <= length <= 100
code*string
Length3 <= length <= 3
isDefault*number
Formatfloat

Response Body

curl -X POST "https://example.com/finance/currency-dictionaries" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "code": "str",    "isDefault": 0.1  }'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "name": "string",  "code": "str",  "isDefault": false}