eventBridgeWebhookSubscriptionCreate
Creates a new Amazon EventBridge webhook subscription.
Building an app? If you only use app-specific webhooks, you won't need this. App-specific webhook subscriptions specified in your shopify.app.toml
may be easier. They are automatically kept up to date by Shopify & require less maintenance. Please read About managing webhook subscriptions.
Arguments
- Anchor to topictopic•Webhook
Subscription requiredTopic! The type of event that triggers the webhook.
- Anchor to webhookSubscriptionwebhook•
Subscription Specifies the input fields for an EventBridge webhook subscription.
- Anchor to subTopicsub•
Topic StringDeprecated An additional constraint to refine the type of event that triggers the webhook. Only supported on certain topics. See our guide to sub-topics for more. Use
instead.
Anchor to EventBridgeWebhookSubscriptionCreatePayload returnsEventBridgeWebhookSubscriptionCreatePayload returns
- Anchor to userErrorsuser•
Errors [UserError!]! non-null The list of errors that occurred from executing the mutation.
- Anchor to webhookSubscriptionwebhook•
Subscription The webhook subscription that was created.
- Create an Amazon EventBridge webhook subscription for ORDERS_CREATE events
- Create an ORDERS_CREATE EventBridge webhook subscription thatincludes metafields during serialization
- Create an ORDERS_CREATE EventBridge webhook subscription with fewer resource fields
- eventBridgeWebhookSubscriptionCreate reference
Examples
mutation eventBridgeWebhookSubscriptionCreate($topic: WebhookSubscriptionTopic!, $webhookSubscription: EventBridgeWebhookSubscriptionInput!) {
eventBridgeWebhookSubscriptionCreate(topic: $topic, webhookSubscription: $webhookSubscription) {
webhookSubscription {
id
topic
format
endpoint {
__typename
... on WebhookEventBridgeEndpoint {
arn
}
}
}
userErrors {
field
message
}
}
}
curl -X POST \
https://your-development-store.myshopify.com/admin/api/2024-04/graphql.json \
-H 'Content-Type: application/json' \
-H 'X-Shopify-Access-Token: {access_token}' \
-d '{
"query": "mutation eventBridgeWebhookSubscriptionCreate($topic: WebhookSubscriptionTopic!, $webhookSubscription: EventBridgeWebhookSubscriptionInput!) { eventBridgeWebhookSubscriptionCreate(topic: $topic, webhookSubscription: $webhookSubscription) { webhookSubscription { id topic format endpoint { __typename ... on WebhookEventBridgeEndpoint { arn } } } userErrors { field message } } }",
"variables": {
"topic": "ORDERS_CREATE",
"webhookSubscription": {
"arn": "arn:aws:events:us-east-1::event-source/aws.partner/shopify.com/166357/test-event-source",
"format": "JSON"
}
}
}'
const { admin } = await authenticate.admin(request);
const response = await admin.graphql(
`#graphql
mutation eventBridgeWebhookSubscriptionCreate($topic: WebhookSubscriptionTopic!, $webhookSubscription: EventBridgeWebhookSubscriptionInput!) {
eventBridgeWebhookSubscriptionCreate(topic: $topic, webhookSubscription: $webhookSubscription) {
webhookSubscription {
id
topic
format
endpoint {
__typename
... on WebhookEventBridgeEndpoint {
arn
}
}
}
userErrors {
field
message
}
}
}`,
{
variables: {
"topic": "ORDERS_CREATE",
"webhookSubscription": {
"arn": "arn:aws:events:us-east-1::event-source/aws.partner/shopify.com/166357/test-event-source",
"format": "JSON"
}
},
},
);
const data = await response.json();
const client = new shopify.clients.Graphql({session});
const data = await client.query({
data: {
"query": `mutation eventBridgeWebhookSubscriptionCreate($topic: WebhookSubscriptionTopic!, $webhookSubscription: EventBridgeWebhookSubscriptionInput!) {
eventBridgeWebhookSubscriptionCreate(topic: $topic, webhookSubscription: $webhookSubscription) {
webhookSubscription {
id
topic
format
endpoint {
__typename
... on WebhookEventBridgeEndpoint {
arn
}
}
}
userErrors {
field
message
}
}
}`,
"variables": {
"topic": "ORDERS_CREATE",
"webhookSubscription": {
"arn": "arn:aws:events:us-east-1::event-source/aws.partner/shopify.com/166357/test-event-source",
"format": "JSON"
}
},
},
});
session = ShopifyAPI::Auth::Session.new(
shop: "your-development-store.myshopify.com",
access_token: access_token
)
client = ShopifyAPI::Clients::Graphql::Admin.new(
session: session
)
query = <<~QUERY
mutation eventBridgeWebhookSubscriptionCreate($topic: WebhookSubscriptionTopic!, $webhookSubscription: EventBridgeWebhookSubscriptionInput!) {
eventBridgeWebhookSubscriptionCreate(topic: $topic, webhookSubscription: $webhookSubscription) {
webhookSubscription {
id
topic
format
endpoint {
__typename
... on WebhookEventBridgeEndpoint {
arn
}
}
}
userErrors {
field
message
}
}
}
QUERY
variables = {
"topic": "ORDERS_CREATE",
"webhookSubscription": {
"arn": "arn:aws:events:us-east-1::event-source/aws.partner/shopify.com/166357/test-event-source",
"format": "JSON"
}
}
response = client.query(query: query, variables: variables)