---
title: "Transactions"
url: "https://developers.zinnia.com/apis/policy-service-0-1-0/versions/8306e031-b41c-452a-a7ed-d73d65602086/schemas/Transactions"
---

> Full API specification: https://developers.zinnia.com/apis/policy-service-0-1-0/versions/8306e031-b41c-452a-a7ed-d73d65602086.md

# Transactions

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    Item:
      type: object
      properties:
        trxId:
          type: string
        trxNumber:
          type: integer
          format: int32
        trxDate:
          type: string
          format: date-time
        typeId:
          type: string
        typeDesc:
          type: string
        status:
          type: string
        statusDesc:
          type: string
        amtProcessed:
          type: number
          format: double
        faceAmount:
          type: object
        policyNumber:
          type: string
          description: The Policy Number is a unique identifier assigned to a life
            insurance or annuity contract by the insurance carrier. It serves as
            the official reference number for tracking, managing, and servicing
            the policy throughout its lifetime
        conversionLoadStatus:
          type: string
        conversionLoadDate:
          type: string
          format: date-time
    Transactions:
      type: object
      properties:
        count:
          type: integer
          format: int32
        items:
          type: array
          items:
            $ref: "#/components/schemas/Item"
```
