Hi Shopify Expert,
I created a fulfillment location service, and its callback never fires when user send a fulfillment request.
const fulfillmentService = {
callback_url: "https://www.xyz.com/webhook/fulfillment_request",
fulfillmentOrdersOptIn: true,
inventoryManagement: true,
name: "xyz ",
permitsSkuSharing: true,
trackingSupport: false,
};
await new Promise((resolve, reject) => {
shopifyClient
.query({
data: {
query: `
mutation fulfillmentServiceCreate($name: String!) {
fulfillmentServiceCreate(name: $name) {
fulfillmentService {
location {
id
}
}
userErrors {
field
message
}
}
}
`,
variables: fulfillmentService,
},
})
When I make a fulfillment request on Shopify UI, my webhook âhttps://www.xyz.com/webhook/fulfillment_requestâ or âhttps://www.xyz.com/webhook/fulfillment_request/fulfillment_order_notificationâ or even âhttps://www.xyz.com/webhookâ never received anything. Can you help ?