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

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

# ReinstatementSubmitRequest

## 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:
    ReinstatementSubmitRequest:
      type: object
      required:
        - correlationId
        - effectiveDate
        - policy
        - transactionAmounts
        - systematicProgram
        - caseId
      properties:
        correlationId:
          type: string
          description: The unique ID to track transaction request across all systems
          example: 657b717b7dcf554abf9ef067
        effectiveDate:
          type: string
          format: date
          description: Date when the transaction was originally scheduled or expected to
            happen. It can be a non-business day
          example: 2023-01-01
        reverseInitiator:
          type: boolean
          description: Property to isolate source transaction(s) that initiated the reversal
          default: false
        policy:
          type: object
          required:
            - policyFeatures
          description: Policy information
          properties:
            policyFeatures:
              type: array
              items:
                type: object
                properties:
                  featureType:
                    type: string
                    example: REINSTATEMENT
                  approvalDate:
                    type: string
                    format: date
                    example: 2025-08-26
                  effectiveDate:
                    type: string
                    format: date
                    example: 2025-08-26
                  underwritingDecision:
                    type: string
                    example: APPROVED
        transactionAmounts:
          type: object
          description: Transaction amounts information
          properties:
            externalIdentifiers:
              type: object
              properties:
                externalTransactionId:
                  type: string
                  description: The unique ID to identify transaction on carrier side.
                  example: AWRT123
                referenceNumber:
                  type: string
                  description: The unique payment reference number for all premium-related
                    transactions by carrier.
                  example: AWRT123
            parties:
              type: array
              items:
                type: object
                properties:
                  paymentForm:
                    type: string
                    example: DTCC
                  partyRole:
                    type: string
                    example: PAYOR
            requestedAmount:
              type: number
              example: 0
        systematicProgram:
          type: object
          description: Systematic program information
          properties:
            paymentForm:
              type: string
              example: DTCC
            arrangementType:
              type: string
              example: PAYMENT
            amountType:
              type: string
              example: AMOUNT
            amount:
              type: number
              example: 0
            frequency:
              type: string
              example: DAILY
            externalIdentifiers:
              type: object
              properties:
                externalArrangementId:
                  type: string
                  example: AWRT123
        caseId:
          type: string
          description: Zinnia Live Case ID
          example: CA0000007389
```
