API 参考组织管理

移除组织成员

POST/RemoveMemberFormOrg

从指定组织节点中移除用户成员,支持批量操作(用户名以英文逗号分隔)。

AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/RemoveMemberFormOrg" \  -H "Content-Type: application/json" \  -d '{    "orgId": 25,    "members": "zhugeliang,zhangfei"  }'
{  "ErrCode": 0,  "Message": "移除成员成功"}