• Features
  • Pricing
Get Started

List TemplatesCreate TemplateGet TemplateUpdate TemplateDelete Template

GET /v1/templates

List templates with pagination and an active-only filter.

GET /v1/templates returns a paginated list of templates.

Authentication

Send an organization API key in x-api-key or Authorization: Bearer <key>.

Query Parameters

NameTypeDefaultDescription
pageinteger1Page number to return.
limitinteger20Number of results per page. Maximum: 100.
activeOnlybooleanfalseWhen true, return only active templates.

Example

curl "https://api.blueputto.com/v1/templates?page=1&limit=20&activeOnly=true" \
  -H "x-api-key: YOUR_API_KEY"

Success Response

200 OK

{
  "data": [{}],
  "meta": {
    "page": 1,
    "limit": 20,
    "totalObjects": 1,
    "totalPages": 1,
    "hasNextPage": false,
    "hasPrevPage": false
  }
}

Error Responses

  • 400 Bad Request
  • 401 Unauthorized
  • 429 Too Many Requests

POST /v1/labels/reorder

Persist a new ordering for labels.

GET /v1/templates

List templates with pagination and an active-only filter.

On this page

AuthenticationQuery ParametersExampleSuccess ResponseError Responses