BigCommerce · Schema

store/customer/address/created

Fires when a customer address is created. ```json filename="Example callback object" showLineNumbers { "created_at": 1561482670, "store_id": "1025646", "producer": "stores/{store_hash}", "scope": "store/customer/address/created", "hash": "352e4afc6dd3fc85ea26bfdf3f91852604d57528", "data": { "type": "customer", "id": 60, "address": { "customer_id": 32 } } } ```

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS
View JSON Schema on GitHub

JSON Schema

bigcommerce-store-customer-address-created-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/store_customer_address_created",
  "title": "store/customer/address/created",
  "description": "Fires when a customer address is created.\n\n```json filename=\"Example callback object\" showLineNumbers\n{\n  \"created_at\": 1561482670,\n  \"store_id\": \"1025646\",\n  \"producer\": \"stores/{store_hash}\",\n  \"scope\": \"store/customer/address/created\",\n  \"hash\": \"352e4afc6dd3fc85ea26bfdf3f91852604d57528\",\n  \"data\": {\n    \"type\": \"customer\",\n    \"id\": 60,\n    \"address\": {\n      \"customer_id\": 32\n    }\n  }\n}\n```",
  "x-examples": {},
  "allOf": [
    {
      "$ref": "#/components/schemas/webhook_callback_base"
    },
    {
      "description": "A lightweight description of the event that triggered the webhook. Will vary depending on the event registered.",
      "properties": {
        "data": {
          "type": "object",
          "description": "A lightweight description of the event that triggered the webhook. Will vary depending on the event registered.",
          "properties": {
            "type": {
              "type": "string",
              "description": "The type will always be `customer`.",
              "example": "customer"
            },
            "id": {
              "type": "integer",
              "description": "ID of the customer address.",
              "example": 60
            },
            "address": {
              "type": "object",
              "properties": {
                "customer_id": {
                  "type": "integer",
                  "description": "ID of the customer.",
                  "example": 32
                }
              }
            }
          }
        }
      }
    }
  ],
  "x-tags": [
    "created"
  ],
  "type": "object",
  "x-internal": false
}