ListProjectMembers
Retrieve a list of workspace members from Alibaba Cloud DataWorks by specifying project ID, role codes, user IDs, and pagination parameters using the MCP server.
Instructions
查询工作空间成员列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
PageNumber | No | 请求的数据页数,用于翻页 | |
PageSize | No | 每页显示的条数,默认为10条,最大100条 | |
ProjectId | No | DataWorks工作空间的ID | |
RoleCodes | No | 工作空间角色Code列表 | |
UserIds | No | Dataworks账号ID列表 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"PageNumber": {
"description": "请求的数据页数,用于翻页"
},
"PageSize": {
"description": "每页显示的条数,默认为10条,最大100条"
},
"ProjectId": {
"description": "DataWorks工作空间的ID"
},
"RoleCodes": {
"description": "工作空间角色Code列表",
"items": {
"type": "string"
},
"type": "array"
},
"UserIds": {
"description": "Dataworks账号ID列表",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}