Digital wallets - Setup
Update digital wallet
Account updater
Buyers - Payment methods
Payment methods
Payment methods - Payment service tokens
Payment methods - Network tokens
Buyers - Gift cards
Buyers - Shipping details
Card scheme definitions
Digital wallets - Setup
Digital wallets - Sessions
Transactions
Refunds
Payment options
Payment service definitions
Payment services
Audit logs
Checkout sessions
Merchant accounts
Digital wallets - Setup
Update digital wallet
Update a digital wallet.
PUT
/
digital-wallets
/
{digital_wallet_id}
curl --request PUT \
--url https://api.{id}.gr4vy.app/digital-wallets/{digital_wallet_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"merchant_name": "<string>",
"domain_names": [
"<string>"
],
"merchant_display_name": "<string>",
"merchant_url": "<string>",
"merchant_country_code": "DE"
}'
{
"type": "digital-wallet",
"id": "1808f5e6-b49c-4db9-94fa-22371ea352f5",
"merchant_account_id": "default",
"provider": "apple",
"merchant_name": "ACME Inc.",
"merchant_display_name": "ACME",
"merchant_url": "https://example.com",
"merchant_country_code": "US",
"domain_names": "example.com",
"active_certificate_count": 2,
"pending_certificate_count": 1,
"expired_certificate_count": 0,
"fields": {
"digital_payment_application_id": "8faebf73-5b43-4514-b170-cbfb50c99fff",
"digital_payment_application_name": "ACME"
},
"created_at": "2013-07-16T19:23:00.000+00:00",
"updated_at": "2013-07-16T19:23:00.000+00:00"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
The ID of the merchant account to use for this request.
Examples:
"default"
Path Parameters
The ID of the digital wallet to edit.
Examples:
"1808f5e6-b49c-4db9-94fa-22371ea352f5"
Query Parameters
Body
application/json
Request body for editing a registered digital wallet
Response
200
application/json
Successful Response
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.{id}.gr4vy.app/digital-wallets/{digital_wallet_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"merchant_name": "<string>",
"domain_names": [
"<string>"
],
"merchant_display_name": "<string>",
"merchant_url": "<string>",
"merchant_country_code": "DE"
}'
{
"type": "digital-wallet",
"id": "1808f5e6-b49c-4db9-94fa-22371ea352f5",
"merchant_account_id": "default",
"provider": "apple",
"merchant_name": "ACME Inc.",
"merchant_display_name": "ACME",
"merchant_url": "https://example.com",
"merchant_country_code": "US",
"domain_names": "example.com",
"active_certificate_count": 2,
"pending_certificate_count": 1,
"expired_certificate_count": 0,
"fields": {
"digital_payment_application_id": "8faebf73-5b43-4514-b170-cbfb50c99fff",
"digital_payment_application_name": "ACME"
},
"created_at": "2013-07-16T19:23:00.000+00:00",
"updated_at": "2013-07-16T19:23:00.000+00:00"
}