Skip to main content
POST
/
templates
/
upload
Upload a PDF template
curl --request POST \
  --url https://pdfs.platform.arb.inc/templates/upload \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form documentID=statementOfClaim \
  --form file='@example-file'
"successfully uploaded template"

Authorizations

Authorization
string
header
required

access token

Body

multipart/form-data
documentID
string
required

The ID of the document to attach the template to.

Example:

"statementOfClaim"

file
file
required

The PDF file to upload (field name file). Must be ≤ 25 MiB.

Example:

"template.pdf"

Response

Template successfully uploaded.

The response is of type string.

Example:

"successfully uploaded template"