Create Digital Wallet App
POST {{apiPath}}/environments/{{envID}}/digitalWalletApplications
The POST {{apiPath}}/environments/{{envID}}/digitalWalletApplications
operation creates a digital wallet app in the specified environment.
A request body is required to create a digital wallet app.
Prerequisites
Create Application (OIDC Mobile App) to get an application.id
for the body. See also Application Management, especially Application Operations.
See Credential digital wallet app data model for full property descriptions.
Property | Type | Required? |
---|---|---|
application.id | String | Required |
appOpenUrl | String | Required |
name | String | Required |
usesPingOneWalletSDK | Boolean | Optional |
The PingOne application identified by application.id
must be a native application (type
set to NATIVE_APP
) and have either a mobile bundle ID (mobile.bundleId
) or a package name (mobile.packageName
).
Request Body
{"name"=>"Customer Wallet App", "application"=>{"id"=>"{{appID}}"}, "appOpenUrl"=>"{{appOpenUrl}}"}
RESPONSES
status: Created
{"_links":{"self":{"href":"https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/digitalWalletApplications/9f698462-21d5-4fd6-8599-c2b56683eb57"}},"id":"9f698462-21d5-4fd6-8599-c2b56683eb57","createdAt":"2023-02-09T19:43:00.817Z","updatedAt":"2023-02-09T19:43:00.817Z","environment":{"id":"abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"},"name":"Customer Wallet App","application":{"id":"84cb89a4-fc4f-4422-b4ae-56b0109a9dbb"},"appOpenUrl":"https://credentials.customer.com","usesPingOneWalletSDK":true}