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

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

# TransactionModelResponse

Model for a transaction with detailed information.

## 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:
    Identifiers:
      type: object
      description: Identifier model with key-value pair.
      properties:
        identifier:
          type: string
          description: Identifier key.
        value:
          type: string
          description: Identifier value.
    TransactionModelResponse:
      type: object
      description: Model for a transaction with detailed information.
      properties:
        recordId:
          type: string
          description: Unique identifier for the transaction record.
        correlationId:
          type: string
          description: Correlation ID associated with the transaction.
        transactionType:
          type: string
          description: Type of transaction.
        carrier:
          type: string
          description: Carrier associated with the transaction.
        source:
          type: string
          description: Source of the transaction.
        entityType:
          type: string
          description: Type of the entity involved.
        entityId:
          type: string
          description: Unique identifier for the entity.
        entity:
          type: object
          description: Actual entity information as JSON Object.
        expireTs:
          type: string
          format: date-time
          description: Expiration timestamp for the transaction.
        createdTs:
          type: string
          format: date-time
          description: Timestamp when the transaction was created.
        updatedTs:
          type: string
          format: date-time
          description: Timestamp when the transaction was last updated.
        createdBy:
          type: string
          description: User or system that created the transaction.
        updatedBy:
          type: string
          description: User or system that last updated the transaction.
        identifiers:
          type: array
          description: List of identifiers related to the transaction.
          items:
            $ref: "#/components/schemas/Identifiers"
```
