Covers all questions related to inventory management, order fulfillment, and shipping.
Is there are way to not send a gift card email to the customer when an order has been fulfilled? Using the admin GraphQL API, I hoped that setting "notifyCustomer" to false would do the trick, but that doesn't work.
Mutation:
mutation FulfillOrder($fulfillment: FulfillmentV2Input!) {
fulfillmentCreateV2(fulfillment: $fulfillment, message: "Automated fulfillment") {
fulfillment {
id
status
}
}
}
Variables:
{
"fulfillment": {
"notifyCustomer": false,
"lineItemsByFulfillmentOrder": {
"fulfillmentOrderId": "<MY_FULFILLMENT_ORDER_ID>"
}
}
}
I know this is a weird request; any help would be most appreciated!
Hi @thelimit , were you able to figure out a way to disable the gift card confirmation email? We would lke to do the same, but don't see an obvious way to do it. Thanks!