Skip to main content

Documents

There are different ways to fill a new or existing document. Any of these endpoints require a PdfFormFillData for the fill data.

See the /api/v1/documents/{documentResourceUuid}/fill to see the paramenters of the PdfFormFillData You can fill a documents text fields, checkbox fields, radio fields and even draw fields.

An example to fill in an existing document:

Suppose you have a PDF with two text fields "Name" and "Address"

pdf
POST /api/v1/documents/{documentResourceUuid}
{
  "fileName": "Filled Document"
  "fillData": {
    "textFieldData": {
      "Name" : "Joe Smith"
    }
  }
}
pdfFilled