List templates (v1)

Last modified: March 06, 2024

This endpoint allows you to get a list of all your templates with metadata and preview links.

This endpoint has been deprecated. Please use List templates v2 instead.

GET Endpoint

https://api.renderform.io/api/v1/my-templates

Example request

curl
    --location
    --request GET 'https://api.renderform.io/api/v1/my-templates' \
    --header 'X-API-KEY: <API_KEY>' \
    --header 'Content-Type: application/json'

Pagination

You can paginate the results by using the limit and offset query parameters.

ParameterTypeDescription
limitintegerThe number of records to return. (max 100)
offsetintegerThe number of records to skip.

Example response

[
  {
    "identifier": "K0iqvG3BvLN83EfDOI2MrTpoK4Q",
    "href": "https://cdn.renderform.io/previews/07aqN5tGIQ91Exo0wyk48D2QXpsWc3gNN.jpg",
    "name": "My Template",
    "width": 1000,
    "height": 1400,
    "createdBy": "John Smith",
    "isPublic": false
  }
]