Payments
- Transactions
- Buyers
- Checkout Sessions
- Payment links
- Payment options
- Payouts
- Refunds
- Sessions
- Settlement records
Instruments
- Card schemes
- Digital wallets
- Gift cards
- Payment methods
- Payment method definitions
Vault
- Account updater
- Network tokens
- Payment service tokens
- Vault Forward
- Vault Forward endpoints
- Vault Forward authentication
Connections
- All services
- Payment services
- Digital wallets
- GETList digital wallets
- GETGet digital wallet
- POSTRegister digital wallet
- PUTUpdate digital wallet
- DELDe-register digital wallet
- Domain registration
- Mobile Certificates (Apple Pay)
- GET
- Anti-fraud services
- Gift-card services
Other
- Flow
- Merchant accounts
- Reports
- Report executions
- Webhook subscriptions
List digital wallets
Returns a list of all registered digital wallets.
curl --request GET \
--url https://api.{gr4vy_id}.gr4vy.app/digital-wallets \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"type": "digital-wallet",
"id": "8d3fe99b-1422-42e6-bbb3-932d95ae5f79",
"merchant_account_id": "default",
"provider": "apple",
"merchant_name": "Gr4vy",
"merchant_url": "https://example.com",
"merchant_display_name": "Gr4vy",
"merchant_country_code": "US",
"domain_names": [
"example.com"
],
"fields": {
"digital_payment_application_id": "<string>",
"digital_payment_application_name": "<string>"
},
"created_at": "2012-12-12T10:53:43+00:00",
"updated_at": "2012-12-12T10:53:43+00:00",
"active_certificate_count": 1,
"pending_certificate_count": 1,
"expired_certificate_count": 1
}
]
}
This endpoint requires the digital-wallets.read
scope.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
A list of registered digital wallets.
A list of registered digital wallets.
A digital wallet (e.g. Apple Pay) that has been registered.
digital-wallet
.
digital-wallet
"digital-wallet"
The ID of the registered digital wallet.
"8d3fe99b-1422-42e6-bbb3-932d95ae5f79"
The unique ID for a merchant account.
"default"
The name of the digital wallet provider.
apple
, google
"apple"
The name of the merchant the digital wallet is registered to.
"Gr4vy"
The main URL of the merchant.
"https://example.com"
The consumer facing name of the merchant.
"Gr4vy"
The country code where the merchant is registered.
2
"US"
The list of domain names that a digital wallet can be used on. To use a digital wallet on a website, the domain of the site is required to be in this list.
["example.com"]
The date and time when this digital wallet was registered.
"2012-12-12T10:53:43+00:00"
The date and time when this digital wallet was last updated.
"2012-12-12T10:53:43+00:00"
The number of active custom certificates registered for this digital wallet (Apple Pay only).
1
The number of pending custom certificates registered for this digital wallet (Apple Pay only).
1
The number of expired custom certificates registered for this digital wallet (Apple Pay only).
1
Was this page helpful?
curl --request GET \
--url https://api.{gr4vy_id}.gr4vy.app/digital-wallets \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"type": "digital-wallet",
"id": "8d3fe99b-1422-42e6-bbb3-932d95ae5f79",
"merchant_account_id": "default",
"provider": "apple",
"merchant_name": "Gr4vy",
"merchant_url": "https://example.com",
"merchant_display_name": "Gr4vy",
"merchant_country_code": "US",
"domain_names": [
"example.com"
],
"fields": {
"digital_payment_application_id": "<string>",
"digital_payment_application_name": "<string>"
},
"created_at": "2012-12-12T10:53:43+00:00",
"updated_at": "2012-12-12T10:53:43+00:00",
"active_certificate_count": 1,
"pending_certificate_count": 1,
"expired_certificate_count": 1
}
]
}