{ "opencollection": "1.0.0", "info": { "name": "Brevo Contacts Agent Status Email Templates API", "version": "3.0" }, "request": { "auth": { "type": "apikey", "key": "api-key", "value": "{{api-key}}", "placement": "header" } }, "items": [ { "info": { "name": "Email Templates", "type": "folder" }, "items": [ { "info": { "name": "List email templates", "type": "http" }, "http": { "method": "GET", "url": "https://api.brevo.com/v3/smtp/templates", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return per request." }, { "name": "offset", "value": "", "type": "query", "description": "Number of results to skip for pagination." }, { "name": "templateStatus", "value": "", "type": "query", "description": "Filter templates by their active status." } ] }, "docs": "Retrieves all transactional email templates created in the account. Templates can be used to send personalized transactional emails with consistent formatting." }, { "info": { "name": "Create an email template", "type": "http" }, "http": { "method": "POST", "url": "https://api.brevo.com/v3/smtp/templates", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new transactional email template with HTML content, subject line, and sender information. Templates support dynamic parameters for personalization." }, { "info": { "name": "Get an email template", "type": "http" }, "http": { "method": "GET", "url": "https://api.brevo.com/v3/smtp/templates/:templateId", "params": [ { "name": "templateId", "value": "", "type": "path", "description": "The unique identifier of the email template." } ] }, "docs": "Retrieves the details of a specific transactional email template by its unique identifier." }, { "info": { "name": "Update an email template", "type": "http" }, "http": { "method": "PUT", "url": "https://api.brevo.com/v3/smtp/templates/:templateId", "params": [ { "name": "templateId", "value": "", "type": "path", "description": "The unique identifier of the email template." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing transactional email template with new content, subject line, or sender information." }, { "info": { "name": "Delete an email template", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.brevo.com/v3/smtp/templates/:templateId", "params": [ { "name": "templateId", "value": "", "type": "path", "description": "The unique identifier of the email template." } ] }, "docs": "Permanently deletes a transactional email template by its unique identifier." } ] } ], "bundled": true }