📌 Overview
To display live bike locations inside your own application, the simplest integration method is via a webhook.
A webhook allows our system to automatically send GPS data to your system whenever new data is available — no need for your app to constantly request updates.
⚙️ How It Works
- You create an API endpoint (webhook)
- A URL in your backend that can receive data
- Example:
https://yourapp.com/api/vok-location
- You share the endpoint with us
- We configure our IoT system to send vehicle data to this URL
- We send location updates automatically
- Every time a vehicle sends new GPS data, we forward it to your endpoint
- Your system processes the data
- Store it, update your database, and display it in your app (e.g., map view)
🔁 Data Flow (Simple)
Vehicle → Vok IoT System → Your Webhook → Your App UI
⚡ Key Benefits
- Real-time (or near real-time) updates
- No need for constant polling
- Simple and scalable integration
- Full control on your side (data storage & UI)
⚠️ Important Notes