RetroBox Webhooks

RetroBox can send your webhook an HTTP Post request with the feedback data when certain events occur during your retro. To set your webhook use the /retrowebhook command. We currently support the following events.

/retroendfeedback - Your webhook will receive the following payload:


{
	"event_name": "feedback_ended",
	"data": [
		{
			"channel": "SLACK_CHANNEL_ID",
			"feedback_type": "Mad | Sad | Glad",
			"feedback_text": "Glad that we can build applications and integrations on top of RetroBox"
		}
	]
}
					

/retroendvoting - Your webhook will receive the following payload:


{
	"event_name": "voting_ended",
	"data": [
		{
			"channel": "SLACK_CHANNEL_ID",
			"feedback_type": "Mad | Sad | Glad",
			"feedback_text": "Glad that we can build applications and integrations on top of RetroBox",
			"votes": 3
		}
	]
}