• Features
  • Pricing
Get Started

OverviewList TemplatesCreate TemplateGet TemplateUpdate TemplateDelete Template

Document Templates

POST /v1/document-templates

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

POST /v1/document-templates creates a new document template.

Authentication

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

Request Body

Send a JSON object. The public OpenAPI schema does not enumerate template-specific properties for this route, so provide the fields your workspace expects.

Example

curl -X POST "https://api.blueputto.com/v1/document-templates" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "content-type: application/json" \
  -d '{}'

Success Response

201 Created

{
  "data": {}
}

Error Responses

  • 400 Bad Request
  • 401 Unauthorized
  • 404 Not Found
  • 429 Too Many Requests

GET /v1/document-templates

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

GET /v1/document-templates/{documentTemplateId}

Retrieve a single document template by its UUID.

On this page

AuthenticationRequest BodyExampleSuccess ResponseError Responses