Create a Group
Security
bearerToken
- Productionhttps://api-v2.dash.app/groups
- Staginghttps://api-v2.dashstaging.app/groups
- ALL_OPTIONS
- SPECIFIC_OPTIONS
curl -i -X POST \
https://api-v2.dash.app/groups \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"role": "BASIC",
"fieldWhitelist": {
"fieldWhitelistType": "ALL_OPTIONS"
}
}'Response
- ALL_OPTIONS
- SPECIFIC_OPTIONS
{ "result": { "id": "cfb665ca-ce35-4418-b9d5-70ee815db4bd", "accountId": "cfb665ca-ce35-4418-b9d5-70ee815db4bd", "name": "My Group Name", "role": "BASIC", "numberOfUsers": 56, "fieldWhitelist": { … } }, "permittedActions": [ { … } ] }