- 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
Member list
POST
/member/list
Request
Header Params
Content-Type
string
required
Example:
application/json
Body Params application/json
p
integer
Page number, starts from 1
limit
integer
Items per page
asc
boolean
Ascending order
orderby
string
Sort by created_at or updated_at
role_id
integer
Role ID
query
string
Search keyword
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/member/list' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200成功
application/json
Body
error
object (DutyError)
optional
code
enum<string>
Rule description
Allowed values:
InvalidParameterInvalidContentTypeUnauthorizedAccessDeniedMethodNotAllowedRequestTooFrequentlyRequestVerifyRequiredDangerousOperationRequestLockedRouteNotFoundBalanceNotEnoughUndonedOrderExistResourceNotFoundInternalErrorReferenceExist
message
string
Inner conditions
data
object
optional
p
integer
required
limit
integer
required
total
integer
required
items
array[object (MemberItem) {13}]
required
Example
{
"error": {
"code": "InvalidParameter",
"message": "string"
},
"data": {
"p": 0,
"limit": 0,
"total": 0,
"items": [
{
"member_id": 0,
"member_name": "string",
"phone": "string",
"phone_verified": "string",
"email": "string",
"email_verified": "string",
"account_role_ids": [
0
],
"time_zone": "Asia/Shanghai",
"locale": "zh-CN",
"status": "string",
"created_at": 0,
"updated_at": 0,
"ref_id": "string"
}
]
}
}
Modified at 2025-01-22 10:14:38