---
title: "ReinstatementQuoteRequest"
url: "https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84/schemas/ReinstatementQuoteRequest"
---

> Full API specification: https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84.md

# ReinstatementQuoteRequest

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia Policy Transactions API.
  version: 1.0.8
servers:
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://qa.api.zinnia.io
    description: QA Environment
components:
  schemas:
    ReinstatementQuoteTransaction:
      type: object
      properties:
        correlationId:
          type: string
          example: 657b717b7dcf554abf9ef067
          description: The unique ID to track transaction request across all systems
        effectiveDate:
          type: string
          format: date
          example: 2023-01-01
          description: Date when the transaction was originally scheduled or expected to
            happen. It can be a non-business day
        reverseInitiator:
          type: boolean
          description: Property to isolate source transaction(s) that initiated the reversal
          default: false
        externalIdentifiers:
          type: object
          properties:
            externalTransactionId:
              type: string
              description: The unique ID to identify transaction on carrier side.
            referenceNumber:
              type: string
              description: The unique payment reference number for all premium-related
                transactions by carrier.
        policy:
          type: object
          required:
            - policyFeatures
          properties:
            policyFeatures:
              type: array
              description: List of features associated with the policy.
              items:
                type: object
                required:
                  - featureType
                properties:
                  featureType:
                    type: string
                    description: Type of the policy feature.
                    enum:
                      - REINSTATEMENT
                    example: REINSTATEMENT
                  approvalDate:
                    type: string
                    description: Date on which the feature was approved.
                    format: date
                    example: 2025-08-26
      required:
        - correlationId
        - effectiveDate
        - policy
    ReinstatementQuoteRequest:
      type: object
      allOf:
        - $ref: "#/components/schemas/ReinstatementQuoteTransaction"
```
