POST
/
manage_permission_group_users
curl --request POST \
  --url https://api.gumloop.com/api/v1/manage_permission_group_users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "organization_id": "<string>",
  "user_id": "<string>",
  "group_id": "<string>",
  "action": "add",
  "user_email": "<string>"
}'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

User successfully added to or removed from permission group

The response is of type object.