Skip to main content
GET
/
groups
/
{group_id}
/
visibility
cURL
curl --request GET \
  --url https://api.opal.dev/v1/groups/{group_id}/visibility \
  --header 'Authorization: Bearer <token>'
{
  "visibility": "LIMITED",
  "visibility_group_ids": [
    "7870617d-e72a-47f5-a84c-693817ab4567",
    "1520617d-e72a-47f5-a84c-693817ab48ad2"
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

group_id
string<uuid>
required

The ID of the group.

Response

200 - application/json

The visibility info of this group.

Visibility infomation of an entity.

visibility
enum<string>
required

The visibility level of the entity.

Available options:
GLOBAL,
LIMITED
Example:

"GLOBAL"

visibility_group_ids
string<uuid>[]