Modify a Team¶
POST /api/v1/workspace/member_group/{group_uuid}/modify
Overview¶
Modify a team
Route Parameters¶
Parameter Name | Type | Required | Description |
---|---|---|---|
group_uuid | string | Y | Team UUID |
Body Request Parameters¶
Parameter Name | Type | Required | Description |
---|---|---|---|
name | string | Y | Team name |
accountUUIDs | array | Y | List of accounts |
Additional Parameter Notes¶
Request Example¶
curl 'https://openapi.guance.com/api/v1/workspace/member_group/group_xxxx32/modify' \
-H 'DF-API-KEY: <DF-API-KEY>' \
-H 'Content-Type: application/json;charset=UTF-8' \
--data-raw '{"name": "Test222","accountUUIDs": ["acnt_xxxx32"]}' \
--compressed