For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dev Portal
DocsAPI ReferenceLearnCommunityChangelog
DocsAPI ReferenceLearnCommunityChangelog
    • About Our APIs
  • REST
    • Overview
  • GraphQL
    • Overview
          • MUTcreateAppExtension
          • MUTupdateAppExtension
          • MUTdeleteAppExtension
          • MUTcreateChannel
          • MUTremoveProductBasicInformationOverrides
          • MUTremoveProductSeoInformationOverrides
          • MUTremoveProductOptionsOverrides
          • MUTremoveProductStorefrontDetailsOverrides
          • MUTremoveProductPreOrderSettingsOverrides
          • MUTsetProductBasicInformation
          • MUTsetProductIsFeatured
          • MUTremoveProductIsFeaturedOverride
          • MUTsetProductSeoInformation
          • MUTsetProductStorefrontDetails
          • MUTsetProductPreOrderSettings
          • MUTsetProductOptionsInformation
          • MUTsetProductUrlPath
          • MUTremoveProductUrlPathOverride
          • MUTsetProductModifiersInformation
          • MUTremoveProductModifiersOverrides
          • MUTremoveProductCustomFieldsOverrides
          • MUTupdateProductCustomFields
          • MUTaddImagesToProduct
          • MUTremoveImagesFromProduct
          • MUTupdateProductImageProperties
          • MUTremoveProductImagePropertiesOverrides
          • MUTsetSharedProductModifiersInformation
          • MUTremoveSharedProductModifiersOverrides
          • MUTsetSharedProductOptionsInformation
          • MUTremoveSharedProductOptionsOverrides
          • MUTsettings
          • MUTupdateTranslations
          • MUTdeleteTranslations
          • MUTaddLocale
          • MUTdeleteLocale
          • MUTupdateLocale
          • MUTcreateEventBridgeWebhook
          • MUTcreatePubSubWebhook
          • MUTupdatePubSubWebhook
          • MUTupdateEventBridgeWebhook
          • MUTcreateHttpsWebhook
          • MUTdeleteWebhook
          • MUTupdateHttpsWebhook
          • MUTcreateMetafield
          • MUTupdateMetafield
          • MUTdeleteMetafield
          • MUTreassignMetafieldsOwner
  • MCP
    • Overview
Dev Portal
LogoLogo
GraphQLAdminMutations

createHttpsWebhook

Example Query
1mutation ExampleMutation($input: CreateHttpsWebhookInput) {
2 createHttpsWebhook(input: $input) {
3 webhook {
4 destination
5 headers
6 clientId
7 createdAt
8 eventFilters
9 id
10 scope
11 status
12 updatedAt
13 }
14 errors
15 }
16}
Variables
1{
2 "input": {
3 "destination": "example",
4 "eventFilters": [
5 {
6 "dataFilter": {
7 "path": [
8 "example"
9 ],
10 "values": {
11 "stringValues": [
12 "example"
13 ],
14 "doubleValues": [
15 0
16 ],
17 "longValues": [
18 "Long"
19 ]
20 },
21 "delivery": "IN"
22 }
23 }
24 ],
25 "headers": [
26 {
27 "key": "example",
28 "value": "example"
29 }
30 ],
31 "isActive": true,
32 "scope": "example"
33 }
34}
Example response
1{
2 "data": {
3 "createHttpsWebhook": {
4 "webhook": {
5 "destination": "example",
6 "headers": [
7 {
8 "key": null,
9 "value": null
10 }
11 ],
12 "clientId": "example",
13 "createdAt": "DateTime",
14 "eventFilters": [
15 {
16 "path": null,
17 "values": null,
18 "delivery": null
19 }
20 ],
21 "id": "example",
22 "scope": "example",
23 "status": "ACTIVE",
24 "updatedAt": "DateTime"
25 },
26 "errors": [
27 {
28 "message": "example"
29 }
30 ]
31 }
32 }
33}
Creates an HTTPS webhook.
Was this page helpful?
Previous

updateEventBridgeWebhook

Next

deleteWebhook

Built with

Arguments

inputCreateHttpsWebhookInputRequired

Returns

an optional CreateHttpsWebhookResult
errorslist of CreateHttpsWebhookErrors
The list of errors that occurred while creating a HTTPS webhook.
webhookHttpsWebhook
The webhook object returned as a result of a mutation.