> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chatgrid.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Document Processing Job

> Create a document processing job that can be tracked through the Jobs API.

This endpoint creates a `document_process` job for a file URL and returns it
immediately. Poll the job status via [Get Job](/api-reference/jobs/get-job).
To make content searchable today, pass extracted text to
[Vectorize Content](/api-reference/documents/vectorize).

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST "https://api.chatgrid.ai/v1/boards/a1b2c3d4-e5f6-7890-abcd-ef1234567890/documents/process" \
    -H "Authorization: Bearer cgk_live_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6" \
    -H "Content-Type: application/json" \
    -d '{
      "file_url": "https://storage.chatgrid.ai/board-files/usr_123/brd_456/report.pdf",
      "node_id": "e5f6a7b8-c9d0-1234-efab-345678901234"
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json 202 theme={null}
  {
    "object": "job",
    "data": {
      "id": "ccdd1122-3344-5566-7788-99aabbccddee",
      "status": "processing",
      "type": "document_process",
      "board_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "file_url": "https://storage.chatgrid.ai/board-files/usr_123/brd_456/report.pdf",
      "node_id": "e5f6a7b8-c9d0-1234-efab-345678901234"
    }
  }
  ```
</ResponseExample>
