Channels API
- Email
- LinkedIn
API Documentation
- Sequences
- Sequence Actions
- Sequence Steps
- Sequence Steps Actions
- Sequence Contacts
- Contacts
- Contacts Actions
- Lists
- Templates
- Black List
- Email Accounts
- Statistics
- Reports
- Branded Links
- Webhooks
- Tasks
Schemas
Templates
List all templates
Returns a list of all email templates
GET
https://stoplight.io/mocks/replyteam/reply/765516802
/
templates
curl --request GET \
--url https://stoplight.io/mocks/replyteam/reply/765516802/templates
[
{
"id": 12345,
"name": "Sales Follow-up",
"subject": "Re: Our previous conversation",
"body": "Hi {{firstName}},\n\nI hope this email finds you well. I wanted to follow up on our previous conversation about...",
"categoryId": "123"
}
]
Response
200 - application/json
Templates retrieved successfully
The response is of type object[]
.
curl --request GET \
--url https://stoplight.io/mocks/replyteam/reply/765516802/templates
[
{
"id": 12345,
"name": "Sales Follow-up",
"subject": "Re: Our previous conversation",
"body": "Hi {{firstName}},\n\nI hope this email finds you well. I wanted to follow up on our previous conversation about...",
"categoryId": "123"
}
]
Assistant
Responses are generated using AI and may contain mistakes.