List scope
GET/v2/config/digital-wallet/openid/sdjwt/scopes
This endpoint is used for listing scopes.
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
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
scope object[]
id stringrequired
Identifier for the scope
scope stringrequired
Define the scope
createdAt numberrequired
Timestamp when the record was created.
updatedAt numberrequired
Timestamp when the record was updated.
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
{
"scope": [
{
"id": "string",
"scope": "string",
"createdAt": 0,
"updatedAt": 0
}
],
"pagination": {
"currentPage": 0,
"totalItems": 0,
"totalPages": 0,
"limit": 0,
"hasPrevious": true,
"hasNext": true
}
}
Loading...