manage-webhook
Subscribe, find, or unsubscribe webhooks for the 'orders/updated' topic on Shopify. Manage webhook subscriptions using a callback URL and webhook ID for streamlined integration.
Instructions
Subscribe, find, or unsubscribe webhooks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform with webhook | |
callbackUrl | Yes | Webhook callback URL | |
topic | Yes | Webhook topic to subscribe to | |
webhookId | No | Webhook ID (required for unsubscribe) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"description": "Action to perform with webhook",
"enum": [
"subscribe",
"find",
"unsubscribe"
],
"type": "string"
},
"callbackUrl": {
"description": "Webhook callback URL",
"format": "uri",
"type": "string"
},
"topic": {
"description": "Webhook topic to subscribe to",
"enum": [
"orders/updated"
],
"type": "string"
},
"webhookId": {
"description": "Webhook ID (required for unsubscribe)",
"type": "string"
}
},
"required": [
"action",
"callbackUrl",
"topic"
],
"type": "object"
}