Introduction
API Documentation
- Sequences
- Sequence Actions
- Sequence Steps
- Sequence Steps Actions
- Sequence Contacts
- Contacts
- Contacts Actions
- Schedules
- Lists
- Tasks
- Templates
- Black List
- Email Accounts
- Statistics
- Reports
- Branded Links
- Webhooks
- Webhook Actions
- Webhook Events
- Webhooks Management
Schemas
Schedules
Get a schedule
Returns schedule details by Id
GET
/
schedules
/
{id}
Copy
curl --request GET \
--url https://stoplight.io/mocks/replyteam/reply/765516802/schedules/{id}
Copy
{
"id": "schedule-123",
"name": "Business Hours Schedule",
"schedule": {
"startDate": "2025-07-01T08:00:00Z",
"endDate": "2025-12-31T23:59:59Z",
"timezone": "Europe/Warsaw",
"workingWindows": [
{
"days": [
1,
2,
3,
4
],
"from": "09:00",
"to": "17:00"
},
{
"days": [
5
],
"from": "10:00",
"to": "18:00"
}
]
},
"useContactTimezone": false,
"skipPublicHolidays": true,
"publicHolidayRegion": "US",
"isDefault": true,
"isActive": true,
"createdAt": "2024-03-08T14:30:00Z",
"updatedAt": "2025-06-18T09:21:12Z"
}
Path Parameters
Schedule Id
Response
200 - application/json
Schedule details retrieved successfully
The response is of type object
.
Copy
curl --request GET \
--url https://stoplight.io/mocks/replyteam/reply/765516802/schedules/{id}
Copy
{
"id": "schedule-123",
"name": "Business Hours Schedule",
"schedule": {
"startDate": "2025-07-01T08:00:00Z",
"endDate": "2025-12-31T23:59:59Z",
"timezone": "Europe/Warsaw",
"workingWindows": [
{
"days": [
1,
2,
3,
4
],
"from": "09:00",
"to": "17:00"
},
{
"days": [
5
],
"from": "10:00",
"to": "18:00"
}
]
},
"useContactTimezone": false,
"skipPublicHolidays": true,
"publicHolidayRegion": "US",
"isDefault": true,
"isActive": true,
"createdAt": "2024-03-08T14:30:00Z",
"updatedAt": "2025-06-18T09:21:12Z"
}
Assistant
Responses are generated using AI and may contain mistakes.