GET
/
access-tokens
/
{token_id}
curl --request GET \
  --url https://api.live.paisr.tech/{version}/access-tokens/{token_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "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.

Path Parameters

token_id
string
required

The Token ID.

Response

200
application/json
Successfully retrieved token details.
success
boolean
Example:

true

data
object