v1

latestOpenAPI 3.0.3MIT2026-07-24122271451.2 KB
Templates

Create Template from File Upload

This asynchronous endpoint allows users to create a new template by uploading a file.

The uploaded file is processed in the background to generate the template. The maximum allowable file size for upload is 100 MB. Field tags and form fields are not supported yet.

Once the file is uploaded, the processing will happen asynchronously, and users need to check the status of the template creation.

post/public/v1/templates?upload

Query parameters

fieldsstring[]

A comma-separated list of additional fields to include in the response.

Response

OK

idstring
namestring
date_createdstring date-time
date_modifiedstring date-time
versionstring
content_date_modifiedstring date-time

Example response

{
  "id": "iMymdDd9XFD3HyxP5VD67Q",
  "name": "Blank",
  "date_created": "2021-06-17T15:51:13.226974Z",
  "date_modified": "2021-06-17T15:51:13.326974Z",
  "version": "2",
  "content_date_modified": "2021-06-17T15:51:13.426974Z"
}