Topics covering webhook creation & management, event handling, Pub/Sub, and Eventbridge, in Shopify apps.
using this library: https://github.com/MONEI/Shopify-api-node
shopify.webhook.create({
topic: "products/create",
address: "https:/.com",
format: "json"
})
.then(webhook => console.log(webhook))
.catch(err => console.error(err));
When I look into the store's webhooks nothing shows up even though its created via the api
Hi Farhan,
Webhooks created through the API will not appear in the admin. You can read back the webhooks created through the API through the GET endpoint.
To learn more visit the Shopify Help Center or the Community Blog.
Hi Farhan,
I also had the same issue, please see - https://ecommerce.shopify.com/c/shopify-apis-and-technology/t/creating-webhook-through-api-doesn-t-a...
Thanks, I was also wondering how to create multiple webhooks at one time?