POST
/
parse
/
invoices
curl --request POST \
  --url https://api.invaro.ai/api/v1/parse/invoices \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "document_id": "<string>"
}'
{
  "success": true,
  "data": {
    "job_id": "job_1739261168870934041",
    "status": "pending"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
document_id
string
required

Document ID of the invoice to process

Response

200 - application/json
Processing started successfully
success
boolean
Example:

true

data
object