Provide PDF to parse

Please provide a PDF document for parsing. All documents are placed in a queue and will be parsed within 1-2 minutes after receiving the request.

The command takes only one document at a time.

Create a new document

POST https://api.tillforty.com/webhook/c01dd71c

This endpoint allows you to store a new document for parsing. After this job is completed, the document status endpoint will be instantly available.

Headers

Name
Value

Content-Type

application/json

Authorization

<your_api_key>

Body

Name
Type
Description

original_base64

string

PDF file encoded as Base64

original_pdf

binary

PDF file (binary) Not yet supported

external_id

Identifier generated by you

*You must provide one of them in your request. Sending both base64 and pdf or neither will result in an error.

Response

{
    "statusCode": 200,
    "message": "PDF document was successfully accepted",
    "id": "99ec0c51-b97d-4b28-8904-0427a16d4659",
    "date_created": "2025-05-07T19:21:53.000+03:00",
    "external_id": "ID123",
    "bank_code": "PARXLV22",
    "status": "Pending",
    "execution": "43544",
    "document_version": "v3"
 }

Request Sample

curl -X POST \
  'https://api.tillforty.com/webhook/c01dd71c' \
  -H 'Authorization: <your_api_key>' \
  -H 'Content-Type: application/json' \
  -d '{
  "original_base64": "string",
  "external_id": "string"
}'

Last updated