Skip to main content
PUT
/
extract
/
jobs
/
{job_id}
/
results
Update Job Results
curl --request PUT \
  --url https://api.contextual.ai/v1/extract/jobs/{job_id}/results \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "results": {}
}'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

job_id
string
required

Body

application/json

Request model for updating the results of a completed extraction job.

results
Results · object
required

Extracted results conforming to the provided JSON Schema.

Response

Successful Response