List Credentials

Query Parameters
  • tenant_id
    Type: string · Tenant Id nullable
Responses
  • application/json
  • application/json
Request Example for get/v1/auth/credentials
curl 'https://api.sandbox.vatcompliance.com/v1/auth/credentials?tenant_id=' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "credentials": [
    {
      "client_id": "123e4567-e89b-12d3-a456-426614174000",
      "client_secret": "string",
      "tenant_id": "string",
      "name": "string",
      "scopes": "string",
      "status": "active",
      "expire_at": "2026-06-15T20:49:28.400Z",
      "created_at": "2026-06-15T20:49:28.400Z"
    }
  ],
  "count": 1
}