The Wherehouse Public API is in BETA. Please contact us should you wish to build a feature rich integration dev@wherehouse.co.za.
POST request to the URL you configured containing the event data.ORDER_CREATEDORDER_UPDATEDPOST request to your configured webhook endpoint with a JSON payload describing the event.Important notes: Webhook delivery is not guaranteed There is currently no automatic retry mechanism if a webhook delivery fails (this may change in the future)
| Field | Type | Description |
|---|---|---|
event_type | string | The event that triggered the webhook |
event_timestamp | string (ISO 8601) | Timestamp when the event occurred |
event_data | object | The event payload data |
destination_urls | array | The webhook endpoints configured for the event |
ORDER_UPDATED event.{
"event_type": "ORDER_UPDATED",
"event_timestamp": "2026-03-05T14:45:38.492Z",
"event_data": {
"id": 918204,
"code": "ORD-7348291",
"status": "shipped",
"origin_status": "Preparing for Customer",
"order_type": "standard",
"order_total": 1499,
"currency_code": "ZAR",
"date_placed": "2026-03-05T14:06:59.000Z",
"created_at": "2026-03-05T14:42:17.480Z",
"updated_at": "2026-03-05T14:45:38.479Z",
"customer_first_name": "Michael",
"customer_last_name": "Daniels",
"customer_email": "michael.daniels@example.com",
"shipping_address_line": "45 Market Street",
"shipping_city": "Cape Town",
"shipping_state": "Western Cape",
"shipping_country": "South Africa",
"shipping_postcode": "8001",
"catalogue": {
"id": 172,
"uid": "3c2a6b7e-9c1e-41c6-8f57-82c8c0c2c9ab",
"name": "Marketplace Feed",
"order_count": 1842,
"product_count": 4021,
"created_at": "2026-02-21T11:14:09.123Z",
"updated_at": "2026-03-05T14:30:44.890Z"
},
"origin_connector_type": {
"id": 1,
"uid": "takealot",
"name": "Takealot",
"logo": "https://assets.wherehouse.co.za/connectors/logos/takealot.svg"
},
"products_sold": [
{
"id": 4410021,
"code": "SKU-AX52",
"title": "Smart Speaker Mini - Black",
"quantity": 1,
"sell_price": 1499,
"status": "shipped",
"product": {
"id": 201994,
"code": "SKU-AX52",
"title": "Smart Speaker Mini - Black",
"retail_price": 1899,
"sale_price": 1499,
"weight_g": 480,
"length_cm": 16,
"width_cm": 10,
"height_cm": 9,
"main_image": "https://cdn.example.com/products/speaker-mini.jpg"
},
"created_at": "2026-03-05T14:42:17.485Z",
"updated_at": "2026-03-05T14:45:27.972Z"
}
]
},
"destination_urls": [
"https://example-webhook-endpoint.com/webhooks/orders"
]
}POST requests200 response quickly to acknowledge receipt