Templify API Documentation

Introduction#

Templify is an API-first SaaS that allows developers to create and manage templates and generate PDFs dynamically. This documentation provides the necessary details to integrate the Templify API seamlessly into your application.

Authentication#

Templify API requires authentication using a Client ID and Secret ID. These credentials must be included in the request headers.

Authentication Headers:

Content-Type: application/json

To obtain your API key, sign in to your Templify account and navigate to the API Keys section.

API Endpoints#

Generate PDF#

Endpoint:

POST /api/convert/TEMPLATE_ID_HERE

Headers:

client_id: CLIENT_ID_HERE
client_secret: CLIENT_SECRET_HERE

Request Body:

{
  "data": {
    "name": "John Doe",
    "invoice_number": "INV-1001",
    "items": [
      { "description": "Item 1", "price": 20 },
      { "description": "Item 2", "price": 30 }
    ]
  }
}

Response:

{
  data:PDF_DOC_IN_BYTE_ARRAY
}

Request & Response Examples#

cURL Example:

curl --location 'https://templify.cloud/api/convert/YOUR_TEMPLATE_ID_HERE' \
--header 'client_id: USER_ID_HERE' \
--header 'client_secret: CLIENT_SECRET_HERE' \
--header 'Content-Type: application/json' \
--header 'Cookie: NEXT_LOCALE=en' \
--data '{
  "templateData": {
         "name": "John Doe",
         "invoice_number": "INV-1001",
         "items": [
           { "description": "Item 1", "price": 20 },
           { "description": "Item 2", "price": 30 }
         ]
       }
     }'

Error Handling#

Templify API returns standard HTTP status codes.

Status CodeMeaningDescription
200OKRequest successful.
400Bad RequestMissing required parameters.
401UnauthorizedInvalid API key.
404Not FoundTemplate ID does not exist.
500Server ErrorAn internal server error occurred.

Example error response:

{
  "error": "Template ID not found"
}

6. Security & Best Practices#

  • Always store API keys securely and do not expose them in front-end code.
  • Use HTTPS for all API requests to ensure encryption.
  • Implement rate limiting to prevent abuse.

Contact & Support#

For any queries or issues, contact our support team:

Happy coding! 🚀