Webhooks, also known as web callbacks or HTTP endpoints, are a way for an application to provide another system with real-time information. The application with the info pushes it out in response to an event. Webhooks can be used in ProductLift applications so that when something happens on the service, ProductLift will send data about that event back to your server.
A webhook endpoint is an HTTP or HTTPS endpoint on your server with a URL. You can provide this to another service that wants to send you data and then receive the payload at that endpoint whenever it changes. Webhook endpoints are often used for sending push notifications, but they have much broader applications, especially when you're working in the API world. If you need to integrate something without using an API, using webhook endpoints could help make everything work together nicely.
Follow these steps to let ProductLift send webhooks to your endpoint:
Settings > API & Webhooks
Add webhook
Add
ProductLift can send the data to multiple endpoints.
ProductLift sends the following events to your webhook endpoint(s):
You can test the output of a webook by adding a webhook tester.
Webhooks from ProductLift follow this structure:
Use webhook signatures to verify that ProductLift generated a webhook request and that it didn’t come from a server acting like ProductLift.
You can find your portal's secret at the top of the page of Settings > API & Webhooks. This secret is used to sign each webhook request.
The following webhook is sent by ProductLift when a new vote has been received.
You can see the vote, the post is displayed on the tab based on its status." data-toggle="tooltip">post, and the portal data.
{
"id": "vg3EGg2wcHgd8nMl",
"creation_time": "2022-06-01T18:17:37Z",
"event": "vote.created",
"data": {
"vote": {
"id": 500,
"created_at": "2022-06-01T18:17:37.808782Z",
"voter": {
"id": 48,
"name": "Rubenb",
"email": "ruben@abc.nl",
"role": "admin",
"counter_votes": 2,
"counter_comments": 18,
"counter_posts": 12,
"counter_comment_votes": 0
}
},
"post": {
"id": 99,
"title": "This is a great idea",
"description": "Wow. This is the best idea I have ever seen!",
"author": {
"id": 48,
"name": "Rubenb",
"email": "ruben@abc.nl",
"role": "admin",
"counter_votes": 2,
"counter_comments": 18,
"counter_posts": 12,
"counter_comment_votes": 0
}
},
"portal": {
"id": 4,
"title": "Test Portal"
}
}
}
5 months ago