Skip to content
StatusSupportDashboard
Webhooks
Event Types

data_api.object.processed

You will receive this event when a Data API object has been processed and labels/actions have been computed.

{
"event_type": "data_api.object.processed",
"data": {
"object_namespace": "users",
"object_id": "user_12345",
"actions": ["suspend_account"],
"labels": [
{
"label_id": "fraud.risk_high",
"label_source": "rule",
"explanation": "High-risk behavior pattern detected",
"applied": true
}
],
"fields": {
"risk_score": 0.92
},
"request_id": "req_01h2m7qdmdjckc30e1mnq6xqfd",
"processed_at": "2026-01-15T20:12:03.120Z"
}
}
  • object_namespace: Namespace where the object was ingested
  • object_id: Identifier of the processed object
  • actions: Array of action labels that were applied
  • labels: Array of evaluated labels
  • fields: Optional map of computed output fields
  • request_id: Request identifier from ingestion
  • processed_at: ISO timestamp when processing completed