Skip to main content
GET
/
v1
/
permission-groups
/
{id}
Get a Permission Group by id
curl --request GET \
  --url https://sandbox-api.borderless.xyz/v1/permission-groups/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "dashboardPermissions": [
    "OrganizationApiKeysGenerate"
  ],
  "dashboardUsers": [
    {
      "id": "<string>",
      "email": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "businessTitle": "<string>",
      "role": "OWNER",
      "deleted": true,
      "deletedAt": "2023-11-07T05:31:56Z",
      "mfaEnabled": true,
      "dashboardPermissions": [
        "OrganizationApiKeysGenerate"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

Successfully retrieved Permission Group data.

id
string
required
name
string
required
dashboardPermissions
enum<string>[]
required
description
string | null
dashboardUsers
object[]