---
title: "List email templates"
method: GET
path: "/feedback/email-templates"
tags: ["Feedback Management"]
---

# List email templates

`GET /feedback/email-templates`

<Warning>
The Feedback Management API is currently in **BETA**, therefore the following endpoints are subject to modification, given a **2 week notice**.

If you are planning to use any of them, please **notify us** so we will be able to keep you informed about upcoming changes.
</Warning>

Retrieves the paginated list of feedback email templates for the authenticated user's organization, ordered by most recently updated.

The response is paginated (default 30 results per page, up to 100).

## Query parameters

- `page` integer
- `per_page` integer

## Response `200`

OK

- object
  - `page` integer — Current page number
  - `max_page` integer — Last page number
  - `count` integer — Number of resources complying with filters
  - `items` FeedbackEmailTemplate[] — List of email templates
    - `name` string, required — Internal name for the template
    - `subject` string, required — Email subject line
    - `title` string, required — Title displayed in the email body
    - `body` string, required — Main body text of the email
    - `cta_text` string, nullable — Call-to-action label. Required when `cta_type` is `BUTTON`.
    - `cta_type` 'BUTTON' | 'EMBEDDED_NPS', required — Type of call-to-action rendered in the email. - `BUTTON`: a clickable button; `cta_text` must be non-null. - `EMBEDDED_NPS`: an NPS score row embedded in the email.
    - `post_cta_text` string, nullable — Text displayed below the call-to-action
    - `closing_text` string, nullable — Closing paragraph of the email
    - `signature_name` string, nullable — Name displayed in the email signature
    - `logo_url` string, uri, nullable — URL of the organization logo displayed in the email header
    - `banner_url` string, uri, nullable — URL of the banner image displayed in the email
    - `color` string, required — Primary accent color for the email template (hex code)
    - `font_family` 'Arial' | 'Helvetica' | 'Verdana' | 'Georgia' | 'Trebuchet', required — Font family used in the email
    - `id` integer, required — Unique identifier of the email template
    - `org_id` integer, required — The organization ID that owns this template
    - `created_at` string, date-time, required — Date and time the template was created
    - `updated_at` string, date-time, required — Date and time the template was last updated

## Other responses

- `401` — You are not authenticated
- `403` — You are not allowed to perform this action

---

[API](https://skmtc.net/partoo/apis/partoo-rest-api.md) · [All operations](https://skmtc.net/partoo/apis/partoo-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/partoo/partoo-rest-api/revisions/3652d8b1a8b3/schema)
