PearPear

List OAuth grants

Returns the active OAuth grants (authorized clients) the authenticated user holds.

GET
/oauth2/grants
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://example.com/oauth2/grants"
{  "grants": [    {      "id": "string",      "name": "string",      "scopes": [        "string"      ],      "connectedAt": "string"    }  ]}