Allianz · Schema

PolicyDetailsSelfServiceRequest

Request body for creating a self-service policy completion session

Financial ServicesInsuranceAsset Management

Properties

Name Type Description
estimate_id string Unique identifier of the price estimate to complete
redirect_url string URL to redirect customer back to after completing the policy
View JSON Schema on GitHub

JSON Schema

api-connect-policy-details-self-service-request-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-policy-details-self-service-request-schema.json",
  "title": "PolicyDetailsSelfServiceRequest",
  "description": "Request body for creating a self-service policy completion session",
  "type": "object",
  "properties": {
    "estimate_id": {
      "type": "string",
      "description": "Unique identifier of the price estimate to complete",
      "example": "est-500789"
    },
    "redirect_url": {
      "type": "string",
      "format": "uri",
      "description": "URL to redirect customer back to after completing the policy",
      "example": "https://portal.example.com/insurance/complete"
    }
  },
  "required": [
    "estimate_id"
  ]
}