Allianz · Schema

SelfServiceEstimateResponse

Self-service estimate session with redirect URL for customer

Financial ServicesInsuranceAsset Management

Properties

Name Type Description
session_id string Unique identifier for the estimate session
estimate_url string URL for the customer to view and complete their estimate
expires_at string Timestamp when the session expires
View JSON Schema on GitHub

JSON Schema

api-connect-self-service-estimate-response-schema.json Raw ↑
{
  "$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-self-service-estimate-response-schema.json",
  "title": "SelfServiceEstimateResponse",
  "description": "Self-service estimate session with redirect URL for customer",
  "type": "object",
  "properties": {
    "session_id": {
      "type": "string",
      "description": "Unique identifier for the estimate session",
      "example": "ses-500789"
    },
    "estimate_url": {
      "type": "string",
      "format": "uri",
      "description": "URL for the customer to view and complete their estimate",
      "example": "https://quote.allianz.com.au/session/ses-500789"
    },
    "expires_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the session expires",
      "example": "2026-04-19T22:30:00Z"
    }
  }
}