In conjunction with services like Zapier, webhooks can be used to automatically publish changes from SiteSeer to your site.
SiteSeer will send webhooks to a URL of your choosing for the following events:
experiment.started
experiment.ended
Headers
- content-type: 'application/json'
- user-agent: (your custom user agent or 'zyppybot')
- x-signature: (sha256 hmac)
Example POST Body
{
"event": "experiment.started",
"experiment": {
"created_at": "2021-12-30T23:14:31.918+00:00",
"delta": null,
"ended_at": null,
"id": 2945,
"is_winner": null,
"new": {
"title": "About SiteSeer - Cyrus Shepard"
},
"old": {
"title": "About SiteSeer"
},
"trend": null,
"updated_at": "2021-12-30T23:14:32.587802+00:00",
"page": {
"id": "2071b572-69c6-11ec-b35d-3e207a1910a8",
"url": "https://siteseer.io/about/",
"site": {
"id": 201105,
"url": "sc-domain:siteseer.io"
}
},
"created_by_account": {
"email": "[email protected]"
},
"ended_by_account": null,
"object": "experiment"
}
}