Anchor to paymentCustomizationCreatepayment
paymentCustomizationCreate
mutation
Requires access scope.
Creates a payment customization.
Anchor to Arguments
Arguments
- Anchor to paymentCustomizationpayment•
Customization PaymentCustomization requiredInput! The input data used to create the payment customization.
Was this section helpful?
Anchor to PaymentCustomizationCreatePayload returnsPaymentCustomizationCreatePayload returns
- Anchor to paymentCustomizationpayment•
Customization Returns the created payment customization.
- Anchor to userErrorsuser•
Errors [PaymentCustomization non-nullError!]! The list of errors that occurred from executing the mutation.
Was this section helpful?
Mutation Reference
1mutation paymentCustomizationCreate($paymentCustomization: PaymentCustomizationInput!) {2 paymentCustomizationCreate(paymentCustomization: $paymentCustomization) {3 paymentCustomization {4 # PaymentCustomization fields5 }6 userErrors {7 field8 message9 }10 }11}
Input
1{2 "paymentCustomization": {3 "enabled": true,4 "functionId": "<your-functionId>",5 "metafields": [6 {7 "description": "<your-description>",8 "id": "gid://shopify/<objectName>/10079785100",9 "key": "<your-key>",10 "namespace": "<your-namespace>",11 "type": "<your-type>",12 "value": "<your-value>"13 }14 ],15 "title": "<your-title>"16 }17}
{
"paymentCustomization": {
"enabled": true,
"functionId": "<your-functionId>",
"metafields": [
{
"description": "<your-description>",
"id": "gid://shopify/<objectName>/10079785100",
"key": "<your-key>",
"namespace": "<your-namespace>",
"type": "<your-type>",
"value": "<your-value>"
}
],
"title": "<your-title>"
}
}
input PaymentCustomizationInput {
enabled: Boolean
functionId: String
metafields: [MetafieldInput!]
title: String
}
input MetafieldInput {
description: String
id: ID
key: String
namespace: String
type: String
value: String
}