当前登录用户创建一个群组。
Request
HTTP request
POST https://www.featapi.com/api/party/group/
Parameters
无需添加参数。
Authorization
该请求需要授权以下scopes访问权限:
Scopes |
---|
party_group |
For more information, see the authentication and authorization page.
Request body
In the request body, supply a Party.Group resource with the following properties:
Property name | Value | Description | Notes |
---|---|---|---|
必填 | |||
name | string | 群组的名称 | |
members | list | 成员列表。创建群组需要至少2名其他用户。成员列表的元素为用户ID。 范例: [“5315959601855”, “7815803339127”] |
Response
如果请求成功,该API返回当前登录用户创建的Party.Group群组数据在响应体信息。
201 Create a group successfully
{
"data": {
"id": 7009,
"name": "群组名称",
"creator": 7815769374283,
"creator_fullname": "WenWei Yang",
"create_time": "2020-06-10T10:26:16.405891Z",
"status": 0,
"is_valid": true,
"bundle_id": null
}
}
400 Validation Exception
示例返回数据可参考 API Common – Validation Exception