I am getting empty response from post-webhooks
This my curl
curl --location '{{SHOP_DOMAIN}/admin/api/2023-07/webhooks.json' \
--header 'X-Shopify-Access-Token: ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--header 'Cookie: request_method=POST' \
--data '{
"webhook": {
"topic": "orders/create",
"address": WEBHOOK_ADDRESS,
"format": "json"
}
}'
Response
{
"webhooks": []
}
I am using a valid token, as it is returning orders data.