Templates
Manage templates for efficient configuration.
The Templates API allows you to manage reusable message templates within a specific service. Using these endpoints, you can retrieve a list of existing templates, create new templates with predefined display names, subjects, and bodies, update existing configurations to keep messaging consistent, and safely delete templates that are no longer in use.
Base URL — https://api.concierge.me/v1
| Endpoint | Usage | Method |
|---|---|---|
| /services/{service_id}/templates | Returns a list templates scoped to the selected service | GET |
| /services/{service_id}/templates | Creates a template and returns the newly-created object | POST |
| /services/{service_id}/templates/{template_id} | Returns a single template | GET |
| /services/{service_id}/templates/{template_id} | Updates a template and returns the updated object | PUT |
| /services/{service_id}/templates/{template_id} | Deletes a template | DELETE |
