Skip to main content
GET
/
bundles
/
{bundle_id}
/
visibility
cURL
curl --request GET \
  --url https://api.opal.dev/v1/bundles/{bundle_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

bundle_id
string<uuid>
required

The ID of the bundle.

Response

200 - application/json

The visibility details of a bundle.

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>[]