• Features
  • Pricing
Get Started

OverviewList TemplatesCreate TemplateGet TemplateUpdate TemplateDelete Template

Document Templates

GET /v1/document-templates

List document templates with pagination and an active-only filter.

GET /v1/document-templates returns a paginated list of document 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/document-templates?page=1&limit=20&activeOnly=true" \
  -H "x-api-key: YOUR_API_KEY"

Success Response

200 OK

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

Error Responses

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

Document Templates

Reference for listing, creating, retrieving, updating, and deleting document templates.

POST /v1/document-templates

Create a new document template by sending a JSON request body.

On this page

AuthenticationQuery ParametersExampleSuccess ResponseError Responses