Feedback Management
List 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).
get/feedback/email-templates
Query parameters
pageinteger
Page number (1-indexed)
per_pageinteger
Number of results per page
Response
OK
Example response
{
"page": 1,
"max_page": 10,
"count": 287,
"items": [
{
"name": "Default Template",
"subject": "We'd love your feedback",
"title": "How did we do?",
"body": "Thank you for visiting us. Please take a moment to share your experience.",
"cta_text": "Leave a review",
"cta_type": "BUTTON",
"post_cta_text": "Your feedback helps us improve.",
"closing_text": "Thank you for your time!",
"signature_name": "The Partoo Team",
"logo_url": "https://example.com/logo.png",
"banner_url": "https://example.com/banner.png",
"color": "#3B82F6",
"font_family": "Arial",
"id": 1,
"org_id": 42,
"created_at": "2024-01-15T10:30:00+00:00",
"updated_at": "2024-06-01T08:00:00+00:00"
}
]
}