light-mode-image
Learn
API Reference

Wallet providers

Create a wallet provider

POST/v2/presentations/wallet-providers

Authorization

bearerAuth
AuthorizationBearer <token>

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

GET/v2/presentations/wallet-providers

Authorization

bearerAuth
AuthorizationBearer <token>

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

GET/v2/presentations/wallet-providers/{walletProviderId}

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

walletProviderId*string

Unique identifier for the wallet provider.

Formatuuid

Response 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

PUT/v2/presentations/wallet-providers/{walletProviderId}

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

walletProviderId*string

Unique identifier for the wallet provider.

Formatuuid

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

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

DELETE/v2/presentations/wallet-providers/{walletProviderId}

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

walletProviderId*string

Unique identifier for the wallet provider.

Formatuuid

Response Body

application/json

curl -X DELETE "https://example.com/v2/presentations/wallet-providers/497f6eca-6276-4993-bfeb-53cbbbba6f08"
Empty

How would you rate this page?

Last updated on

On this page