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 | Allow null: False
Maximum length: 48
|
| accountUUIDs | array | Y | List of accounts | Example: ['xxxx', 'xxx']
Allow null: True
|
Additional Parameter Notes¶
Request Example¶
curl 'https://us1-openapi.truewatch.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