Skip to main content
GET
/
api
/
svc
/
v1
/
personal-access-tokens
List Personal Access Tokens
curl --request GET \
  --url https://{controlPlaneURL}/api/svc/v1/personal-access-tokens \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "type": "<string>",
      "tenantName": "<string>",
      "manifest": {
        "name": "<string>",
        "type": "virtual-account",
        "expiration_date": "<string>",
        "permissions": [
          {
            "resource_fqn": "<string>",
            "resource_type": "<string>",
            "role_id": "<string>"
          }
        ],
        "auto_rotate": {
          "auto_rotate_interval": 360,
          "grace_period": 30,
          "notification_target": {
            "type": "email",
            "notification_channel": "<string>",
            "to_emails": [
              "<string>"
            ]
          }
        },
        "secret_fqn": "<string>"
      },
      "createdBySubject": {
        "subjectId": "<string>",
        "subjectType": "user",
        "subjectSlug": "<string>",
        "subjectDisplayName": "<string>"
      },
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "isExpired": true,
      "jwts": [
        {
          "id": "<string>",
          "subjectType": "<string>",
          "subjectId": "<string>",
          "metadata": {},
          "expiry": "2023-11-07T05:31:56Z",
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z"
        }
      ],
      "createdBy": "<string>"
    }
  ],
  "pagination": {
    "total": 100,
    "offset": 0,
    "limit": 10
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:100

Number of items per page

Required range: 1 <= x <= 1000
Example:

10

offset
integer
default:0

Number of items to skip

Required range: x >= 0
Example:

0

Response

200 - application/json

Returns all Personal Access Tokens created by the user in the current tenant.

data
VirtualAccount · object[]
required

Array of Personal Access Tokens

pagination
object
required

Pagination Information

I