GET
/
api
/
v1
/
documents
/
task
/
{task_identifier}
curl --request GET \
  --url https://api.fieldwise.ai/api/v1/documents/task/{task_identifier} \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "id": 123,
    "external_id": "<string>",
    "file_path": "<string>",
    "document_metadata": {},
    "created_at": "2023-11-07T05:31:56Z",
    "pages": [
      {
        "content": "This is the content of page 1...",
        "page_number": 1
      }
    ]
  },
  "error": {
    "error_code": "RESOURCE_NOT_FOUND",
    "message": "Resource not found"
  },
  "meta": {
    "timestamp": "2023-11-07T05:31:56Z",
    "version": "1.0"
  }
}

Authorizations

X-API-Key
string
header
required

Headers

X-API-Key
string | null

Path Parameters

task_identifier
string
required

Response

200
application/json

Successful Response

The response is of type object.