when creating a webhook via api, its not showing up under store notifications -> webhooks

when creating a webhook via api, its not showing up under store notifications -> webhooks

Farhan_Syed
Excursionist
45 0 4

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

Replies 3 (3)

Jamie_D_
Shopify Staff (Retired)
533 1 92

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.

Sean_O_Loughlin
Shopify Partner
9 0 2

Farhan_Syed
Excursionist
45 0 4

Thanks, I was also wondering how to create multiple webhooks at one time?