List Clients
ListClients lists OAuth2 clients for the organization
Authorization<token>
Bearer token
In: header
X-Organization-ID<token>
Tenant or organization identifier
In: header
Query Parameters
page?integer
Format
int32pageSize?integer
Format
int32Response Body
application/json
curl -X GET "https://api.nrings.io/v1/oauth2/clients?page&pageSize" \ -H "Authorization: Bearer {your_token}" \ -H "X-Organization-ID: {your_org_id}"{
"clients": [
{
"clientId": "string",
"name": "string",
"description": "string",
"redirectUris": [
"string"
],
"scopes": [
"string"
],
"clientType": "string",
"requiresPkce": true,
"isActive": true
}
],
"totalCount": 0,
"page": 0,
"pageSize": 0
}