Webhooks
A webhook is essentially a user-defined callback over HTTP. It is an efficient way for one system to notify another about events in real time. By setting up a webhook URL within your MobileBoost account, you enable our platform to send POST requests with test results to the specified endpoint every time a test suite completes its execution.
Step-by-step Guide
Step 1: Configuration
Access the Settings Page: Navigate to the Settings page of our platform: https://app.mobileboost.io/gpt-driver/settings
Configure Webhook URL:
Look for the option titled “Webhook URL to be called after test suite run”.
Input the webhook URL where you want to receive the POST requests. Ensure it's a valid and accessible endpoint.
Authorization (Optional):
If your server requires an authorization header for incoming requests, input the authorization value in the provided field called “(Optional) Webhook authorization header”
Step 2: Payload Structure
Once the webhook is set up, after each test suite run, our platform will send a POST request to the specified URL. The request body will carry a JSON payload with the test results. Here is a sample structure of the payload:
Last updated