API 参考组织管理

添加组织成员

POST/AddOrgMembers

为指定组织节点批量添加用户成员。

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/AddOrgMembers" \  -H "Content-Type: application/json" \  -d '{    "orgId": "25",    "members": [      {        "username": "zhangfei"      },      {        "username": "zhugeliang"      }    ]  }'
{  "ErrCode": 0,  "Message": "添加成员成功"}