v1

latestOpenAPI 3.1.02026-08-066378446.6 KB
Document Operations

List document's dynamic fields

<small>Requires an API token with the Document Reader role.</small>

Lists a document's dynamic fields and their values.

Entries with the multi_select value type are only included in the response if you are using API version 2026-04-02 or newer.

get/documents/{document}/dynamic-fields

Path parameters

documentstring required

The document UUID

Response

Array of DynamicFieldResource

Example response

{
  "data": [
    {
      "uuid": "7dae3dad-e56d-45e9-86e5-b69dc30597dc",
      "ref_uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "name": "Gross salary",
      "settings": {
        "currencies": [
          "EUR",
          "USD"
        ]
      },
      "format": {
        "decimals": 2,
        "decimal_separator": ".",
        "thousands_separator": ","
      },
      "question": "What is the employee's gross salary in EUR?"
    }
  ]
}