disqualificationStatus Webhook
The Disqualification Status Webhook provides notifications on users who have not been qualified for an offer by the advertiser based on their driving performance. The following is the detailed API Request-Response contract for the Disqualification Status Webhook:
POST
URL: The Publisher needs to provide the URL for the webhook.
Headers
Name
Type
Description
Authorization*
JSON
APIKEY <api_key>
Field
Description
Type
Sample Value
driver_id
The user'suser_id
String
abc123
publisher_app_id
The Publisher's application Id.
String
def456
test_drive_completed
Affirmation of the completion of the user's test drive.
Boolean
true
qualification_failure_reason
The reason for the user's disqualification.
String
Disqualified for an offer by advertiser.
timestamp
The timestamp of the disqualification event.
Long
1698658285
Sample Webhook Request Payload
{
"driver_id": "abc123",
"publisher_app_id": "def456",
"test_drive_completed": true,
"qualification_failure_reason": "Disqualified for an offer by advertiser",
"timestamp": 1698658285
}