Step 1: Get Started with Grubtech Webhooks
Create a Notification URL
The first step in setting up Grubtech webhooks is to create a notification URL that will receive and process webhook event data in real time.
Overview
A notification URL is an endpoint that receives event notifications from Grubtech via JSON data sent in a POST request. To ensure smooth communication, the URL must be properly configured to accept, validate, and process incoming webhook events.
Requirements for the Notification URL:
- Receive a POST event notification – The URL should be capable of accepting POST requests containing event details.
- Respond with a 2xx HTTP status – The system must confirm successful receipt of the data by returning a response in the 2xx range.
- Use HTTPS – Secure connections are mandatory for all webhook interactions.
- Store event data safely – Ensure that the received event notifications are stored securely for further processing.
You can configure the notification URL on the Webhooks page of your application in the Grubtech Developer Console.
Setting up this webhook correctly ensures seamless event tracking, efficient data processing, and secure communication between Grubtech and your system.
What Does the Notification URL Do?
- It receives event data from Grubtech via a POST request in JSON format.
- It must confirm that it received the data.
- It needs to be accessible for Grubtech to send notifications.
- It must be set it up in the Webhooks page of your application in the Developer Portal.
Final Step
Once your notification URL is ready, add it to the Webhooks section of your Project in the Grubtech Developer application to start receiving event notifications.
Updated about 1 month ago