Squarespace · Schema

Squarespace Webhook Notification

Represents the payload structure of a webhook notification sent by Squarespace when a subscribed event occurs on a merchant site. All notifications share a common envelope with a topic-specific data payload. Authenticity is verified via the Squarespace-Signature header using HMAC-SHA256.

CommerceE-CommerceMarketingPaymentsRetailWebsite BuilderWebhook

Properties

Name Type Description
notificationId string Unique identifier for this specific notification delivery instance
websiteId string Unique identifier of the Squarespace website that generated the event
subscriptionId string Unique identifier of the webhook subscription that matched the event
topic string The event topic that triggered this notification
createdOn string ISO 8601 UTC timestamp when the notification was generated by Squarespace
data object Topic-specific event data payload. Structure varies based on the topic value.
View JSON Schema on GitHub

JSON Schema

squarespace-webhook-notification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developers.squarespace.com/schemas/squarespace/webhook-notification.json",
  "title": "Squarespace Webhook Notification",
  "description": "Represents the payload structure of a webhook notification sent by Squarespace when a subscribed event occurs on a merchant site. All notifications share a common envelope with a topic-specific data payload. Authenticity is verified via the Squarespace-Signature header using HMAC-SHA256.",
  "type": "object",
  "required": ["notificationId", "websiteId", "subscriptionId", "topic", "createdOn", "data"],
  "properties": {
    "notificationId": {
      "type": "string",
      "description": "Unique identifier for this specific notification delivery instance"
    },
    "websiteId": {
      "type": "string",
      "description": "Unique identifier of the Squarespace website that generated the event"
    },
    "subscriptionId": {
      "type": "string",
      "description": "Unique identifier of the webhook subscription that matched the event"
    },
    "topic": {
      "type": "string",
      "description": "The event topic that triggered this notification",
      "enum": ["order.create", "order.update", "extension.uninstall"]
    },
    "createdOn": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 UTC timestamp when the notification was generated by Squarespace"
    },
    "data": {
      "description": "Topic-specific event data payload. Structure varies based on the topic value.",
      "oneOf": [
        { "$ref": "#/$defs/OrderCreateData" },
        { "$ref": "#/$defs/OrderUpdateData" },
        { "$ref": "#/$defs/ExtensionUninstallData" }
      ]
    }
  },
  "$defs": {
    "OrderCreateData": {
      "type": "object",
      "description": "Data payload for an order.create notification containing the ID of the newly created order",
      "required": ["orderId"],
      "properties": {
        "orderId": {
          "type": "string",
          "description": "Unique identifier of the newly created order. Use with the Orders API to retrieve full order details."
        }
      }
    },
    "OrderUpdateData": {
      "type": "object",
      "description": "Data payload for an order.update notification containing the updated order ID and description of the change",
      "required": ["orderId"],
      "properties": {
        "orderId": {
          "type": "string",
          "description": "Unique identifier of the order that was updated"
        },
        "orderUpdate": {
          "type": "string",
          "description": "Human-readable string describing what was updated on the order, such as fulfillment status changes"
        }
      }
    },
    "ExtensionUninstallData": {
      "type": "object",
      "description": "Data payload for an extension.uninstall notification",
      "properties": {
        "clientId": {
          "type": "string",
          "description": "The OAuth client ID of the Squarespace Extension that was uninstalled from the merchant site"
        }
      }
    },
    "WebhookSubscription": {
      "type": "object",
      "description": "A webhook subscription record configured via the Webhook Subscriptions API",
      "required": ["id", "endpointUrl", "topics"],
      "properties": {
        "id": {
          "type": "string",
          "description": "Unique identifier for the webhook subscription"
        },
        "endpointUrl": {
          "type": "string",
          "format": "uri",
          "description": "The publicly accessible HTTPS URL where notifications are delivered"
        },
        "topics": {
          "type": "array",
          "description": "List of event topics this subscription is configured to receive",
          "minItems": 1,
          "items": {
            "type": "string",
            "enum": ["order.create", "order.update", "extension.uninstall"]
          }
        },
        "secret": {
          "type": "string",
          "description": "HMAC-SHA256 signing secret returned only at creation or secret rotation. Must be stored securely."
        },
        "createdOn": {
          "type": "string",
          "format": "date-time",
          "description": "ISO 8601 UTC timestamp when the subscription was created"
        },
        "updatedOn": {
          "type": "string",
          "format": "date-time",
          "description": "ISO 8601 UTC timestamp when the subscription was last modified"
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/squarespace-webhook-notification"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.