List OAuth2.0 Clients
GET/config/data-space/oauth2-clients
Lists OAuth2 Clients for use with a Data Marketplace.
Request
Query Parameters
offset integerrequired
Requested index for start of resources to be provided in response requested by client
limit integerrequired
Default value: 10
Number of items returned per page. Requested number of resources to be provided in response requested by client.
Responses
- 200
Data Marketplace related OAuth2 Clients listed
Response Headers
Content-Type json
Content-Type header
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
oauth2Clients object[]
clientId stringrequired
ID of the OAuth2 Client
clientSecret stringrequired
Secret of the OAuth2 Client
clientName stringrequired
Name of the OAuth2 Client
clientDescription string
Description of the OAuth2 Client
grantTypes stringrequired
Grant Types allowed for the OAuth2 Client
timestamp intrequired
Timestamp of the OAuth2 Client creation or last modification
pagination object
currentPage integer
Current page number
totalItems integer
Total number of items available
totalPages integer
Total number of pages based on limit
limit integer
Number of items per page
hasPrevious boolean
Indicates if there's a previous page
hasNext boolean
Indicates if there's a next page
{
"oauth2Clients": [
{
"clientId": "string",
"clientSecret": "string",
"clientName": "string",
"clientDescription": "string",
"grantTypes": "string"
}
],
"pagination": {
"currentPage": 0,
"totalItems": 0,
"totalPages": 0,
"limit": 0,
"hasPrevious": true,
"hasNext": true
}
}
Loading...