Have your say in Community Polls: What was/is your greatest motivation to start your own business?
Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

Unable to register webhooks for discounts

Unable to register webhooks for discounts

LatikaSingh
Shopify Partner
3 0 0

I'm integrating Shopify into my App. In that, I'm registering webhooks dynamically. I can register all other webhooks for customers, orders, and products successfully. But I'm registering a webhooks for discounts as "discounts/create, discounts/update, discounts/delete", it's throwing an error as "API Exception (404): {'errors': 'Could not find the webhook topic discounts/create'". My app is already authenticated with scopes "read_discounts, write_discounts". I'm using this code to register a webhook,

POST "/admin/api/2024-01/webhooks.json" 

 

{
  "webhook": {
    "topic": "discounts/create",
    "address": "my host",
    "format": "json"
  }
}

 

Replies 0 (0)