At the moment we send the following data out via webhooks.
Order Information:
Order Created Date
Order Status
Order Reference
Net Total
Gross Total
Tax Total
Payment Gateway Reference
Transactions:
Transaction Name
Transaction Type
Vendor
Amount
Promotions:
Promo Name
Promo Code
Discount Amount
Order Item Information:
OrderItem Created Date
Orderitem ID
Orderitem Net Total
Orderitem Gross Total
Accounting Codes:
Accounting Code Name
Accounting Code
Fund Code
Events:
Resource Name
Location Name
Location Post Code
Product Name
Product ID
Product Description
Event Start Datetime
Event End Datetime
Orderitem ID
Order Notes
Purchaser Information:
All fields on the Purchaser template
Participant Information:
All fields on the Participant template
This information is sent as JSON, and looks like:
{
"Order":{
"Created":"2018-11-29 10:55:53",
"Status":"Completed",
"Reference":"REF-200008-OVG",
*"NetTotal":45,*
*"GrossTotal":44,*
*"TaxTotal":9,*
*"PaymentGatewayReference":"REF-200008-OVG",*
*"Transactions":[*
*{*
*"Name":null,*
*"Type":"Card",*
*"Vendor":"SagePay",*
*"Amount":"44.00"*
*}*
],
"Params":[
],
*"Promotions":[*
*{*
*"Name":"Package Test A.2",*
*"Code":"A1PROMO",*
*"Discount":"10.00"*
*}*
*],*
"OrderItems":[
{
"OrderItem":{
"Created":"2018-11-29 10:55:53",
"OrderItemID":14,
*"NetTotal":"45.00",*
*"GrossTotal":54,*
*"TaxTotal":"9.00",*
*"AccountingCodes":{*
*"Name":"Tax",*
*"AccountingCode":"BLTAX",*
*"FundCode":"BLTAX"*
*},*
"Event":{
"ResourceName":"Portway",
"LocationName":"Bristol",
"LocationPostCode":"PostCode",
"ProductName":"Carting",
"ProductID":5,
"ProductDescription":"
Allow customers to book at multiple locations<\/p>",
"StartDateTime":"2018-12-07 10:00:00",
"EndDateTime":"2018-12-07 11:00:00",
"OrderItemID":14
}
}
}
],
"Notes":[
]
},
"Purchaser":{
"PurchaserName":"Sarah Zachary Johansen",
"PurchaserAddressTEXT":"2 5 Ferrari Street, Middlesbrough, North Yorkshire, TK6 7XL, United Kingdom",
"PurchaserPhone":"012345 596699 \/ 07555666",
"PurchaserEmail":"email@email.com",
"CustomData":{
"Custom Field (new)":"Kosher",
"Custom Field (Text)":"Text Value",
"Custom Field (Textarea)":"Text Value",
"Custom Field (Options)":"Custom Field Option 1",
"Custom Field (Date)":"1972-09-02",
"Custom Field (Numeric)":"8"
}
},
"Participants":[
{
"SocialTitle":"Sarahe",
"FirstName":"Zacharye",
"Surname":"Johansene",
"Email":"Michaele@Maiere.com",
"Custom Field (Text)":"Text Value",
"Custom Field (Textarea)":"Text Value",
"Custom Field (Options)":"5",
"Custom Field (Date)":"1972-09-02",
"Custom Field (Numeric)":"8",
*"OrderItemID":14*
}
]
}