- Open API
- Quick Start
- About Pagination
- Member Management
- Team Management
- Schedule Management
- Information Retrieval
- Preference Settings
- Channel
- Template Management
- Incident Management
- Group View
- Match conditions
- Enable rule
- Disable rule
- Delete rule
- Rule list
- See creation interface for filters explanation
- Create rule
- Rule description
- Update rule
- Channel
- Match conditions
- Match conditions
- Update rule
- Channel
- Rule ID
- Inner conditions
- Enable rule
- Rule list
- Rule details
- Rule name
- Rule description
- Match conditions
- Rule description
- See creation interface for filters explanation
- Disable rule
- Rule description
- Alert Management
- Change Management
- Insights (old)
- Custom Fields
- Service Calendar
- Label Enhancement
- Alert Processing
- Integration Routing
- License Management
- Insights
- Event API
- Webhook
View schedule details
POST
/schedule/info
Request
Body Params application/json
schedule_id
integer
Schedule ID
start
integer
Start time
end
integer
End time
Example
{
"schedule_id": 123,
"start": 1111111111,
"end": 11111111111
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://prod-cn.your-api-server.com/schedule/info' \
--header 'Content-Type: application/json' \
--data-raw '{
"schedule_id": 123,
"start": 1111111111,
"end": 11111111111
}'
Responses
🟢200成功
application/json
Body
data
object
required
schedule_id
integer
optional
schedule_name
string
optional
description
string
optional
status
string
optional
team_id
integer
optional
layers
array [object {11}]
Rule
layer_schedules
array [object {3}]
Schedule rule calculation
final_schedule
object
required
cur_oncall
object
Current schedule information
next_oncall
object
Next shift information
error
object
optional
code
enum<string>
Error code
Allowed values:
InvalidParameterInvalidContentTypeUnauthorizedAccessDeniedMethodNotAllowedRequestTooFrequentlyRequestVerifyRequiredDangerousOperationRequestLockedRouteNotFoundBalanceNotEnoughUndonedOrderExistResourceNotFoundInternalErrorReferenceExist
message
string
Error description
request_id
string
required
Example
{
"request_id": "0a63016e66ab47532d066bea90a892b0",
"data": {
"cur_oncall": {
"start": 1722500940,
"end": 1722787200,
"group": {
"name": "A",
"group_name": "A",
"members": [
{
"role_id": 0,
"person_ids": [
2715149662131
]
}
]
},
"update_at": 1720159704,
"weight": 0,
"index": 0
},
"next_oncall": {
"start": 1722500940,
"end": 1722787200,
"group": {
"name": "A",
"group_name": "A",
"members": [
{
"role_id": 0,
"person_ids": [
2715149662131
]
}
]
},
"update_at": 1720159704,
"weight": 0,
"index": 0
}
}
}
Modified at 2025-01-22 10:14:38