Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ResponseNotes
{
  "key": "vwz123",
  "type": "pdf",
  "complete": true,
  "createTime": "2023-12-13T19:27:57.350Z",
  "blob": {
  "key": "bcd123",
    "name": "MyFileName",
    "type": "pdf"
  }
}

Get a task.

  • Requires user or webservice authentication.
  • type - The task type.
    • pdf - The task will convert a submission to a PDF file.
  • complete - True if the task has completed.
  • blob - Populated if the task results in a file and the task is complete.
    • name - The name of the file.
    • type - The file type. Use as the extension when saving the file.

GET /tasks/{key}/xlsx

ResponseNotes
Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
Content-Disposition: attachment; filename="MyFileName.xlsx"

Get the content of an XLSX file generated by a task.

  • Requires user or webservice authentication.

GET /tasks/{key}/pdf

ResponseNotes
Content-Type: application/pdf
Content-Disposition: filename="MyFileName.pdf"

Get the content of a PDF file generated by a task.

  • Requires user or webservice authentication.

...