Anchor to section titled 'undefined'

paymentCustomizationActivation
mutation

Requires write_payment_customizations access scope.

Activates and deactivates payment customizations.


The enabled status of the payment customizations.

The global IDs of the payment customizations.


Was this section helpful?

The IDs of the updated payment customizations.

The list of errors that occurred from executing the mutation.


Was this section helpful?
Hide code
Mutation reference
Copy
mutation paymentCustomizationActivation($enabled: Boolean!, $ids: [ID!]!) {
  paymentCustomizationActivation(enabled: $enabled, ids: $ids) {
    ids
    userErrors {
      field
      message
    }
  }
}
Hide code
Input
Copy
{
  "enabled": true,
  "ids": [
    "gid://shopify/<objectName>/10079785100"
  ]
}