Template Endpoints
Manage message templates programmatically via API.
The Template API allows you to create, list, update, and delete templates programmatically. This is useful for:
- • Syncing templates from your documentation
- • Creating templates in bulk from a CSV or database
- • Integrating template management into your CI/CD pipeline
- • Automating template versioning
Endpoints
GET /templates
List all templates
POST /templates
Create a new template
GET /templates/{id}
Get template details
PATCH /templates/{id}
Update a template
DELETE /templates/{id}
Delete a template
Full API documentation with request/response examples coming soon.