Open Tanish2002 opened 2 years ago
Shopify has support for AWS EventBridge(here), which can be used to integrate webhook delivery.
When trying to use the current Create method like this:-
resp, err := c.Webhook.Create(goshopify.Webhook{ Address: "arn:aws:events:ap-south-1::event-source/aws.partner/shopify.com/xxxxxx7/somecustomrule", Topic: "orders/create", Format: "json", })
The response received is address: is invalid
address: is invalid
The official node api has a DeliveryMethod field
DeliveryMethod
The official docs don't mention the DeliveryMethod field: https://shopify.dev/docs/api/admin-rest/2023-01/resources/webhook
Did you try adding a field to the Webhook struct and see if it works?
Shopify has support for AWS EventBridge(here), which can be used to integrate webhook delivery.
When trying to use the current Create method like this:-
The response received is
address: is invalid
The official node api has a
DeliveryMethod
field