Edit in GitHubLog an issue

customerPaymentTokens query

When the vault feature is supported by a payment integration and enabled, customers have the option during checkout to save their credit card information. (Braintree supports the vault feature. Third-party payment integrations may support this feature as well.) During subsequent checkouts, the customer is presented with a list of saved payment options. If Instant Purchase is enabled, customers can even by-pass the two-step checkout process and place the order from the product page.

The customerPaymentTokens query returns an array of stored payment methods. Use the deletePaymentToken mutation to delete a payment token from the system.

Syntax

{customerPaymentTokens{CustomerPaymentTokens}}

Reference

The customerPaymentTokens reference provides detailed information about the types and fields defined in this query.

Example usage

The following example returns all the current customer's payment tokens. The public_hash output values will be unique to your application.

Request:

Copied to your clipboard
query {
customerPaymentTokens {
items {
details
public_hash
payment_method_code
type
}
}
}

Response:

Copied to your clipboard
{
"data": {
"customerPaymentTokens": {
"items": [
{
"details": "{\"type\":\"VI\",\"maskedCC\":\"1111\",\"expirationDate\":\"09\\/2022\"}",
"public_hash": "377c1514e0...",
"payment_method_code": "braintree",
"type": "card"
},
{
"details": "{\"type\":\"DI\",\"maskedCC\":\"1117\",\"expirationDate\":\"11\\/2023\"}",
"public_hash": "f5816fe2ab...",
"payment_method_code": "braintree",
"type": "card"
}
]
}
}
}

Errors

ErrorDescription
The current customer isn't authorized.
The current customer is not currently logged in, or the customer's token does not exist in the oauth_token table.

deletePaymentToken mutation

  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.