Wallet providers
Create a wallet provider
/v2/presentations/wallet-providersAuthorization
bearerAuth In: header
Request Body
application/json
Wallet provider payload
TypeScript Definitions
Use the request body type in TypeScript.
Request payload for verifier wallet provider
Response Body
application/json
application/json
curl -X POST "https://example.com/v2/presentations/wallet-providers" \ -H "Content-Type: application/json" \ -d '{ "name": "string", "openid4vpConfiguration": { "authorizationEndpoint": "string" } }'{ "id": "string", "name": "string", "openid4vpConfiguration": { "authorizationEndpoint": "string" }}Retrieve all wallet providers
/v2/presentations/wallet-providersAuthorization
bearerAuth In: header
Response Body
application/json
curl -X GET "https://example.com/v2/presentations/wallet-providers"[ { "id": "string", "name": "string", "openid4vpConfiguration": { "authorizationEndpoint": "string" } }]Retrieve a wallet provider
/v2/presentations/wallet-providers/{walletProviderId}Authorization
bearerAuth In: header
Path Parameters
Unique identifier for the wallet provider.
uuidResponse Body
application/json
application/json
curl -X GET "https://example.com/v2/presentations/wallet-providers/497f6eca-6276-4993-bfeb-53cbbbba6f08"{ "id": "string", "name": "string", "openid4vpConfiguration": { "authorizationEndpoint": "string" }}Update a wallet provider
/v2/presentations/wallet-providers/{walletProviderId}Authorization
bearerAuth In: header
Path Parameters
Unique identifier for the wallet provider.
uuidRequest Body
application/json
Wallet provider payload
TypeScript Definitions
Use the request body type in TypeScript.
Request payload for verifier wallet provider
Response Body
application/json
application/json
application/json
curl -X PUT "https://example.com/v2/presentations/wallet-providers/497f6eca-6276-4993-bfeb-53cbbbba6f08" \ -H "Content-Type: application/json" \ -d '{ "name": "string", "openid4vpConfiguration": { "authorizationEndpoint": "string" } }'{ "id": "string", "name": "string", "openid4vpConfiguration": { "authorizationEndpoint": "string" }}Delete a wallet provider
/v2/presentations/wallet-providers/{walletProviderId}Authorization
bearerAuth In: header
Path Parameters
Unique identifier for the wallet provider.
uuidResponse Body
application/json
curl -X DELETE "https://example.com/v2/presentations/wallet-providers/497f6eca-6276-4993-bfeb-53cbbbba6f08"How would you rate this page?
Last updated on