PandaDoc

documents_metadata_get

Returns the metadata fields populated for the document. Each result combines the field definition (`id`, `key`, `field_type`, `settings`) with the extracted or manually-set value (`value`, `acceptance_status`). When extraction is not done, returns a structured envelope `{code, description, retry_after?}` where `code` is one of: `extraction_pending` (in progress — retry after `retry_after` seconds), `not_started` (typically the document is not yet completed — retry once it is), or `failed` (do not retry; contact support).

Remote svitlana-omelia/pandadoc

Remote (network-hosted)

Other tools also called documents_metadata_get? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "anyOf": [
        {
          "type": "integer",
          "maximum": 100,
          "minimum": 1
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Maximum number of fields to return in one response. Omit for API default (100). Max 100."
    },
    "offset": {
      "anyOf": [
        {
          "type": "integer",
          "minimum": 0
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Number of fields to skip before starting to collect the result set. For predictable paging, use multiples of `limit`."
    },
    "document_id": {
      "type": "string",
      "description": "Document ID"
    }
  }
}