List scope
GET/v2/config/digital-wallet/openid/sdjwt/scopes
Lists the OAuth 2.0 scopes available for OID4VCI credential issuance, as published in the credential issuer metadata.
Request
Query Parameters
offset integerrequired
Number of records to skip for pagination.
limit integerrequired
Default value: 10
Maximum number of records to return per page.
Responses
- 200
- 401
- 500
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
scope object[]
id stringrequired
Unique identifier for the scope record.
scope stringrequired
OAuth 2.0 scope value mapped to a credential type in the OID4VCI Credential Issuer Metadata.
createdAt numberrequired
Unix timestamp (in seconds) when the scope was created.
updatedAt numberrequired
Unix timestamp (in seconds) when the scope was last modified.
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": 1,
"totalItems": 25,
"totalPages": 3,
"limit": 10,
"hasPrevious": false,
"hasNext": true
}
}
Unauthorized
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Internal server error
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Loading...