OrderWebhookCustomer
Reusable OrderWebhookCustomer schema.
Type: object
Fields
| Field | Type | Constraints | Meaning | Example |
|---|---|---|---|---|
namerequired | string | None | The human-readable name of the resource. | string (generated) |
emailrequired | string | None | The contact email for the person represented by this record. | string (generated) |
shipping_addressrequired | object | None | The delivery address snapshot frozen for the Order. | {
"line1": "string",
"line2": "string",
"city": "string",
"province": "string",
"postal_code": "string",
"country": "string"
} (generated) |
shipping_address.line1required | string | None | The primary street-address line. | string (generated) |
shipping_address.line2required | string or null | None | The optional unit, suite, or secondary address line. | string (generated) |
shipping_address.cityrequired | string | None | The municipality in the delivery address. | string (generated) |
shipping_address.provincerequired | string | None | The Canadian province or territory in the delivery address. | string (generated) |
shipping_address.postal_coderequired | string | None | The Canadian postal code in the delivery address. | string (generated) |
shipping_address.countryrequired | string | None | ISO 3166-1 alpha-2 country code. | string (generated) |
Examples
{ "name": "string", "email": "string", "shipping_address": { "line1": "string", "line2": "string", "city": "string", "province": "string", "postal_code": "string", "country": "string" }}