- 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 list
POST
/schedule/list
Request
Body Params application/json
query
string
Search match
p
integer
Page number, starts from 1
limit
integer
Items per page, default 10
is_my_team
boolean
My teams only
start
integer
Start time
end
integer
End time
Example
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/list' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200成功
application/json
Body
data
object
required
items
array [object {9}]
required
total
integer
required
error
object
required
code
enum<string>
Error code
Allowed values:
InvalidParameterInvalidContentTypeUnauthorizedAccessDeniedMethodNotAllowedRequestTooFrequentlyRequestVerifyRequiredDangerousOperationRequestLockedRouteNotFoundBalanceNotEnoughUndonedOrderExistResourceNotFoundInternalErrorReferenceExist
message
string
Error description
Example
{
"data": {
"items": [
{
"schedule_id": 0,
"schedule_name": "string",
"desc": "string",
"group_id": 0,
"endabled": true,
"create_at": 0,
"create_by": 0,
"update_at": 0,
"update_by": 0
}
],
"total": 0
},
"error": {
"code": "InvalidParameter",
"message": "string"
}
}
Modified at 2025-01-22 10:14:38