Skip to main content
POST
/
v1
/
manage
/
org
/
group
/
access-list
Set default group access list
curl --request POST \
  --url https://api-v2.requesty.ai/v1/manage/org/group/access-list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "access_list_id": "123e4567-e89b-12d3-a456-426614174000"
}
'
{
  "error": {
    "message": "<string>"
  }
}
Set or clear the organization’s default access list for groups. When set, any group that does not have its own explicit access list will use this one. Pass null for access_list_id to clear the default. Access Lists docs →

Authorizations

Authorization
string
header
required

API key for authentication

Body

application/json
access_list_id
string<uuid> | null

The access list ID to set as the default for groups. Pass null to clear the default.

Example:

"123e4567-e89b-12d3-a456-426614174000"

Response

Default group access list updated successfully

Last modified on July 3, 2026