action braze_list_available_email_templates { label: "List Available Email Templates" description: "Use this endpoint to get a list of available templates in your Braze account.\n\nUse the Template REST APIs to programmatically manage the email templates that you have stored on the Braze dashboard, on the Templates & Media page. Braze provides two endpoints for creating and updating your email templates.\n\n### Successful Response Properties\n```json\n{\n \"count\": number of templates returned\n \"templates\": [template with the following properties]:\n \"email_template_id\": (string) your email template's API Identifier,\n \"template_name\": (string) the name of your email template,\n \"created_at\": (string, in ISO 8601),\n \"updated_at\": (string, in ISO 8601),\n \"tags\": (array of strings) tags appended to the template\n}\n ```" provider: braze method: GET path: "/templates/email/list" encoding: json input: { type: "object" properties: { limit: { type: "string" } modified_after: { type: "string" } modified_before: { type: "string" } offset: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }