This event triggers once per Pull, when policy data for all insurance policies is available. Does not include documents.
Webhook Request Format
The webhook is a POST request with a JSON body that will look like the following:
{
"widget_id": "<WIDGET_ID>",
"team_id": "<TEAM_ID>",
"pull_id": "<PULL_ID>",
"status": "PULLING_DATA",
"meta_data": {... developer-supplied JSON-serializable metadata ...},
"event_type": "POLICIES_AVAILABLE",
"account_identifier": "<ACCOUNT_IDENTIFIER>",
"is_monitored": true,
"monitoring": { // Only exists if is_monitored=true
"initial_pull_id": "<PULL_ID>", // The ID of the original Pull being monitored
"monitoring_id": "<MONITORING_ID>" // The ID of the Monitoring
},
"data": {}
}