GET
/
access-tokens
curl --request GET \
  --url https://api.live.paisr.tech/{version}/access-tokens \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "tokens": [
      {
        "id": "tkn_123456",
        "description": "Postman",
        "permissions": [
          {
            "id": "tpm_12345",
            "type": "invoices.read"
          }
        ],
        "created_at": "2023-11-07T05:31:56Z",
        "created_by": "tem_123456",
        "expires_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Successfully retrieved the list of profile access tokens.
success
boolean
Example:

true

data
object