customerPaymentMethodSendUpdateEmail mutation

Sends a link to the customer so they can update a specific payment method.

Required access

write_customers access scope.


On this page


Interactive example

This is an example mutation query. Use the embedded interactive tool below to edit the query.

Hint: use Ctrl + Space for autocompleting fields.

mutation customerPaymentMethodSendUpdateEmail($customerPaymentMethodId: ID!) { customerPaymentMethodSendUpdateEmail(customerPaymentMethodId: $customerPaymentMethodId) {
  1. <font style="color:#1F61A0;">customer</font> <font style="color:#555555;">{</font>
  2. <font style="color:#1F61A0;">id</font>
  3. <font style="color:#555555;">}</font>
  4. <font style="color:#1F61A0;">userErrors</font> <font style="color:#555555;">{</font>
  5. <font style="color:#1F61A0;">field</font>
  6. <font style="color:#1F61A0;">message</font>
  7. <font style="color:#555555;">}</font>
} } { “customerPaymentMethodId”: “Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE=” }


Arguments

Argument Description
customerPaymentMethodId
(
[ID!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01)

) REQUIRED
The payment method to be updated.
email
(
[EmailInput](https://shopify.dev/docs/admin-api/graphql/reference/orders/emailinput)

)
Specifies the payment method update email fields.


EmailInput fields

  • bcc ([[String!]](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    Specifies any bcc recipients for the email.
  • body ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    Specifies the email body.
  • customMessage ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    Specifies a custom message to include in the email.
  • from ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    Specifies the email sender.
  • subject ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    Specifies the email subject.
  • to ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    Specifies the email recipient.


Return fields

  • customer ([Customer](https://shopify.dev/docs/admin-api/graphql/reference/customers/customer))
    The customer to whom an update payment method email was sent.
  • userErrors ([[UserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/usererror))
    List of errors that occurred executing the mutation.