POST
/
api
/
v1
/
documents
/
ingest
curl --request POST \
  --url https://api.fieldwise.ai/api/v1/documents/ingest \
  --header 'Content-Type: multipart/form-data' \
  --header 'X-API-Key: <api-key>' \
  --form 'external_id=<string>' \
  --form 'metadata=<string>' \
  --form extract_paragraphs=false
{
  "success": true,
  "data": {
    "task_identifier": "<string>",
    "file_path": "<string>",
    "external_id": "<string>"
  },
  "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

Body

multipart/form-data

Response

201
application/json

Successful Response

The response is of type object.