Templates
Retrieve Template
GET
`/v1/templates/:template`
Get a template using its id.
List Templates
GET
`/v1/templates`
Example
To retrieve a list of templates, you can filter by type, status, and order them by different properties.
Example Request
Pagination
If the has_more property on the pagination object is set to true, you know there are more templates in the database that have not been returned to you. The pagination object also has a page property indicating your current offset and a limit property. The total_count property in pagination returns the the total number of templates in the database.
By default the page is set to 1 and the limit is 25.
If we want to query for templates 26 - 50, we would request page 2 with a query parameter.