Webhooks¶
Configure webhooks to receive real-time notifications when processing completes.
Setting Up Webhooks¶
Log in to your dashboard at platform.mippia.com
Click Callback URL
Enter your webhook endpoint URL
Save and verify
Preparing Your Endpoint¶
Your endpoint must handle a challenge verification request. When you register a callback URL, MIPPIA sends the following POST request to your endpoint:
Request from MIPPIA:
POST /your/webhook/endpoint HTTP/1.1
Content-Type: application/json
{
"challenge": "generated-code-from-MIPPIA",
"type": "url_verification"
}
Your endpoint must respond:
HTTP/1.1 200 OK
Content-Type: application/json
{
"challenge": "generated-code-from-MIPPIA"
}
Once your endpoint returns the correct challenge value, registration is complete.
Webhook Security¶
All webhook requests include an X-MIPPIA-Signature header for verification.