Skip to main content
GET
/
email-templates
List email templates
curl --request GET \
  --url https://api.reply.io/v3/email-templates \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "id": 101,
      "name": "Follow-up template",
      "subject": "Quick follow-up",
      "body": "<p>Hi {{firstName}},</p>",
      "folderId": 5,
      "folderType": "personal",
      "attachments": []
    }
  ],
  "hasMore": true
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Query Parameters

top
integer

Maximum number of items to return

skip
integer

Number of items to skip

name
string

Filter templates by name (partial match)

folder_id
integer

Filter templates by folder ID

folder_type
string

Filter templates by folder type (e.g., "personal", "shared")

is_default
boolean

Filter templates by default status

Response

Paginated list of email templates

items
EmailTemplateBase · object[]
hasMore
boolean

Whether more items are available beyond the current page