Allianz · Schema
LeadReferralResponse
Confirmation of a submitted lead referral
Financial ServicesInsuranceAsset Management
Properties
| Name | Type | Description |
|---|---|---|
| lead_id | string | Unique identifier for the submitted lead |
| status | string | Status of the lead submission |
| created_at | string | Timestamp when the lead was submitted |
| assigned_to | string | Team or person the lead has been assigned to |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/allianz-docs/refs/heads/main/json-schema/api-connect-lead-referral-response-schema.json",
"title": "LeadReferralResponse",
"description": "Confirmation of a submitted lead referral",
"type": "object",
"properties": {
"lead_id": {
"type": "string",
"description": "Unique identifier for the submitted lead",
"example": "lead-500234"
},
"status": {
"type": "string",
"description": "Status of the lead submission",
"enum": [
"submitted",
"assigned",
"contacted"
],
"example": "submitted"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the lead was submitted",
"example": "2026-04-19T10:30:00Z"
},
"assigned_to": {
"type": "string",
"description": "Team or person the lead has been assigned to",
"example": "Allianz Sales Team"
}
}
}