Skip to main content
Reference

RTB House Webhook

There is a section within the StoreFront Conversion and Privacy screen (Other tab) for providing a webhoook url to send RTB House order information. This webhook is called for each order after successful payment.

image-20250908-151532.png

Payload:

{
"date": "2024-09-08T14:30:15.123Z",
"order_id": "DEMO-12345",
"order_value": 149.99,
"device": "Desktop",
"browser": "Chrome 118.0.5993.70",
"host": "shop.example.com",
"custom_field_4": "some tracking information here",
"items": [
{
"item_id": "PROD-001",
"description": "Wireless Bluetooth Headphones",
"quantity": 1
},
{
"item_id": "PROD-002",
"description": "USB-C Charging Cable",
"quantity": 2
}
]
}
Was this page helpful?