We have a partner app (public app in draft mode) with Amazon EventBridge configured.
The app is subscribed to the ORDERS_UPDATES and PRODUCTS_UPDATE topics.
AWS SQS receives orders and products webhooks when the Event subscriptions version is set to either 2022-07 or 2022-04.
Since 2022-10, only product web hooks are being received. What could be the cause?
The app’s permissions:
"read_themes",
"read_customers",
"read_translations",
"read_orders",
"read_locales",
"read_markets",
"write_products",
"read_products"
The result of “admin/api/2022-10/webhooks.json” query:
{
"id": .................,
"address": "arn:aws:events:.................",
"topic": "orders/updated",
"created_at": "2023-06-13T15:04:32-04:00",
"updated_at": "2023-06-13T15:04:32-04:00",
"format": "json",
"fields": [],
"metafield_namespaces": [],
"api_version": "2022-10",
"private_metafield_namespaces": []
},
{
"id": ...............,
"address": "arn:aws:events:.........................",
"topic": "products/update",
"created_at": "2023-06-12T08:11:18-04:00",
"updated_at": "2023-06-12T08:11:18-04:00",
"format": "json",
"fields": [
"admin_graphql_api_id",
"tags",
"product_type",
"vendor",
"handle",
"status",
"options",
"published_at",
"image",
"title",
"updated_at",
"variants",
"images",
"created_at",
"id",
"published_scope",
"template_suffix"
],
"metafield_namespaces": [],
"api_version": "2022-10",
"private_metafield_namespaces": []
},