Skip to main content
GET
/
service
/
{tenant_name}
/
group
/
{group_name}
Get Tenant Group
curl --request GET \
  --url https://api.example.com/service/{tenant_name}/group/{group_name} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "<string>",
  "users": [
    "<string>"
  ],
  "subnets": [
    "<string>"
  ],
  "ip_addresses": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

Response

Successful Response

id
integer
required
name
string
required
users
string[] | null
subnets
string[] | null
ip_addresses
string[] | null