DeleteProjectMember
Remove a member from a DataWorks workspace by specifying the Project ID and User ID, enabling efficient management of workspace access and permissions using the DataWorks MCP Server.
Instructions
移除工作空间成员
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ProjectId | No | DataWorks工作空间的ID | |
UserId | Yes | DataWorks账号ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ProjectId": {
"description": "DataWorks工作空间的ID"
},
"UserId": {
"description": "DataWorks账号ID",
"type": "string"
}
},
"required": [
"UserId"
],
"type": "object"
}