邀请一个/多个成员¶
POST /api/v1/workspace/member/batch_invitation
概述¶
邀请一个/多个成员
Body 请求参数¶
参数名 | 类型 | 必选 | 说明 |
---|---|---|---|
to | array | Y | 被邀请者列表 例子: ['xx1@jiagouyun.com', 'xx2@jiagouyun.com'] 允许为空: True |
roleUUIDs | array | Y | 被邀请者角色uuid列表 例子: ['xxx', 'xxx'] 允许为空: False |
method | string | Y | 邀请方式 例子: None 允许为空: False 可选值: ['email'] |
参数补充说明¶
请求例子¶
curl 'https://openapi.guance.com/api/v1/workspace/member/batch_invitation' \
-H 'DF-API-KEY: <DF-API-KEY>' \
-H 'Content-Type: application/json;charset=UTF-8' \
--data-raw '{"to": ["241927@qq.com"], "method": "email", "roleUUIDs": ["general"]}' \
--compressed