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
Sequences
Get a sequence
Returns sequence details by Id
GET
https://stoplight.io/mocks/replyteam/reply/765516802
/
sequences
/
{id}
curl --request GET \
--url https://stoplight.io/mocks/replyteam/reply/765516802/sequences/{id}
{
"id": 123,
"name": "Sales Outreach 2024",
"emailAccounts": [
"sales@company.com",
"outreach@company.com"
],
"status": "Active",
"scheduleId": 456,
"isArchived": false,
"created": "2024-03-08T14:30:00Z",
"settings": {
"emailsCountPerDay": 50,
"daysToFinishProspect": 14,
"emailSendingDelaySeconds": 30,
"dailyThrottling": 200,
"disableOpensTracking": false,
"repliesHandlingType": "Mark person as finished",
"enableLinksTracking": true
},
"steps": [
{
"id": 1323,
"type": "Email",
"number": 1,
"delayInMinutes": 0,
"template": {
"id": 456,
"subject": "Quick question about {{companyName}}",
"body": "Hi {{firstName}},\n\nI noticed you're leading initiatives at {{companyName}} and wanted to reach out regarding our solution that could help with your sales automation needs.\n\nWould you be open to a quick chat this week?\n\nBest regards,\nJohn"
}
},
{
"id": 43432,
"type": "LinkedIn",
"number": 2,
"delayInMinutes": 2880,
"executionMode": "Automatic",
"actionType": "Message",
"data": {
"content": "Hi {{contact.firstName}}, I noticed your great work at {{contact.company}}. Would love to connect and discuss potential synergies between our companies."
}
}
]
}
Path Parameters
Sequence Id
Response
200 - application/json
Sequence details retrieved successfully
The response is of type object
.
curl --request GET \
--url https://stoplight.io/mocks/replyteam/reply/765516802/sequences/{id}
{
"id": 123,
"name": "Sales Outreach 2024",
"emailAccounts": [
"sales@company.com",
"outreach@company.com"
],
"status": "Active",
"scheduleId": 456,
"isArchived": false,
"created": "2024-03-08T14:30:00Z",
"settings": {
"emailsCountPerDay": 50,
"daysToFinishProspect": 14,
"emailSendingDelaySeconds": 30,
"dailyThrottling": 200,
"disableOpensTracking": false,
"repliesHandlingType": "Mark person as finished",
"enableLinksTracking": true
},
"steps": [
{
"id": 1323,
"type": "Email",
"number": 1,
"delayInMinutes": 0,
"template": {
"id": 456,
"subject": "Quick question about {{companyName}}",
"body": "Hi {{firstName}},\n\nI noticed you're leading initiatives at {{companyName}} and wanted to reach out regarding our solution that could help with your sales automation needs.\n\nWould you be open to a quick chat this week?\n\nBest regards,\nJohn"
}
},
{
"id": 43432,
"type": "LinkedIn",
"number": 2,
"delayInMinutes": 2880,
"executionMode": "Automatic",
"actionType": "Message",
"data": {
"content": "Hi {{contact.firstName}}, I noticed your great work at {{contact.company}}. Would love to connect and discuss potential synergies between our companies."
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.