Allianz · Schema

PolicyDetailsAssistedRequest

Request body for staff-assisted policy details completion

Financial ServicesInsuranceAsset Management

Properties

Name Type Description
estimate_id string Unique identifier of the price estimate to convert
customer_id string Unique identifier of the customer
payment_frequency string Preferred payment frequency for the policy
View JSON Schema on GitHub

JSON Schema

api-connect-policy-details-assisted-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-assisted-request-schema.json",
  "title": "PolicyDetailsAssistedRequest",
  "description": "Request body for staff-assisted policy details completion",
  "type": "object",
  "properties": {
    "estimate_id": {
      "type": "string",
      "description": "Unique identifier of the price estimate to convert",
      "example": "est-500123"
    },
    "customer_id": {
      "type": "string",
      "description": "Unique identifier of the customer",
      "example": "500123"
    },
    "payment_frequency": {
      "type": "string",
      "description": "Preferred payment frequency for the policy",
      "enum": [
        "annual",
        "monthly"
      ],
      "example": "monthly"
    }
  },
  "required": [
    "estimate_id",
    "customer_id"
  ]
}