Individuals

Upload documents to an individual

post/individuals/{individual_id}/documents

Path parameters

individual_idstring required

ID of the individual to upload document

Response

Individual updated successfully

idstring

Unique identifier of the document.

namestring

Name or label for the document.

statestring

Current processing state of the document (e.g., WAITING, PROCESSED).

statusstring

Status of the document reception or approval.

signed_urlstring uri

Signed URL for accessing the document file.

created_atstring date-time

Timestamp when the document was created or uploaded.

document_typestring

Type/category of the document.

Example response

{
  "id": "doc_123",
  "name": "generic_doc",
  "state": "SUBMITTED",
  "status": "approved",
  "checks": [
    {
      "name": "name_match",
      "validate": true,
      "message": "Name matched successfully",
      "weight": 1
    }
  ],
  "signed_url": "https://cdn.example.com/doc.pdf",
  "created_at": "2025-05-01T12:00:00Z",
  "document_type": "generic",
  "values": [
    {
      "name": "Full Name",
      "value": [
        100,
        200
      ],
      "confidence": 0.95
    }
  ]
}

Changes