> ## Documentation Index
> Fetch the complete documentation index at: https://docs.guile.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Digital Wallet Card Not Allowed

> Digital wallet cards cannot be saved as payment methods

## Cause

The payment method token provided represents a digital wallet card (such as Apple Pay or Google Pay), which cannot be saved as a payment method in the customer's profile. Digital wallet cards are dynamically tokenized and are intended for single-use transactions during checkout. They cannot be stored for future use like traditional credit or debit cards.

## Fix

To use digital wallets: - Process digital wallet payments directly during checkout through the payment processor - Do not attempt to save digital wallet cards as payment methods To save a payment method for future use: - Use a traditional credit or debit card token instead - Obtain the card token from the payment processor's client-side SDK (e.g., Stripe.js) - Ensure the token represents a physical card, not a digital wallet card.

## Retry safety

Not retryable until the underlying state or request changes.

## Raised by

These operations can return this problem:

* [Add a payment method](/api-reference/customers/add-a-payment-method)

## Example

```json theme={null}
{
  "type": "https://docs.guile.app/problems/digitalWalletCardNotAllowed",
  "title": "Digital Wallet Card Not Allowed",
  "status": 422,
  "detail": "The payment method token provided represents a digital wallet card (such as Apple Pay or Google Pay), which cannot be..."
}
```
