cURL
curl --request GET \ --url https://api.doczilla.app/v1/templates \ --header 'Authorization: Bearer <token>'
{ "hasNextPage": true, "hasPreviousPage": true, "data": [ { "id": "<string>", "name": "<string>", "output": "PDF", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z" } ] }
Get all templates.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
x >= 1
1
Is true if there is a next page.
Is true if there is a previous page.
The list of templates.
Show child attributes
The unique identifier of the template.
The name of the template.
200
The output format of the template.
PDF
IMAGE
The date and time the template was created.
The date and time the template was last updated.
Was this page helpful?