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

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

# ReverseRecreate

## 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:
    Correction:
      type: object
      properties:
        transactionId:
          type: string
          example: "377"
        amount:
          type: number
          format: double
          description: amount you need to correct
          example: 5
    ReverseRecreate:
      type: object
      properties:
        correlationId:
          type: string
          example: 657b717b7dcf554abf9ef067
          description: The unique ID to track transaction request across all Systems
        corrections:
          type: array
          items:
            $ref: "#/components/schemas/Correction"
        noRecreateTransactions:
          type: boolean
          description: To recreate trnsaction again or not
          example: false
```
