v1

latestOpenAPI 3.0.12026-07-266184114.0 KB
Fax AI

Get fax field extraction result

Get the field extraction processing status and extracted data for a fax. Returns status and extracted fields when processing is finished. (Permitted scopes: fax:all:read, fax:ai:read)

get/accounts/{user_id}/faxes/{fax_id}/ai/field-extraction

Path parameters

user_idstring required

User ID. Use 'self' for your own account, or provide a specific user ID for corporate member accounts.

fax_idstring required

The unique identifier of the fax

Response

Response containing field extraction status and result

status'not_requested' | 'pending' | 'finished' | 'failed' | 'content_filtering_policy' required

Field extraction processing status

dataobject nullable

Extracted fields as key-value pairs. Null when status is not finished

Example response

{
  "status": "finished",
  "data": {
    "sender_name": "John Doe",
    "sender_company": "Acme Corp",
    "date": "2026-01-15",
    "reference_number": "INV-2026-001"
  }
}