Skip to main content
Webhooks allow you to receive real-time updates about results from the Ready Health API. When you are getting set up, you will specify a URL where you wish to receive the requests.

Webhook Payloads

The payload of a webhook will look like so:
{
"type": <event_type>,
"data": {
          "documentId": <string>,
          "status": <status>,
        }
}

Event types

Event typeData.Status
SCAN_SUCCESSSUCCESS
SCAN_FAILEDFAILED
VALIDATION_SUCCESSVALID
VALIDATION_FAILEDINVALID
I