curl --request POST \
--url https://use.hoop.dev/api/users/groups \
--header 'Content-Type: application/json' \
--data '{
"name": "engineering"
}'
{
"name": "engineering"
}
Create a new user group
curl --request POST \
--url https://use.hoop.dev/api/users/groups \
--header 'Content-Type: application/json' \
--data '{
"name": "engineering"
}'
{
"name": "engineering"
}
Group object
The body is of type object
.
{"name": "string"}
The response is of type object
.
Was this page helpful?