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

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

# ProductTransactionReferenceResponse

Wrapped response envelope for the product-transactions reference endpoint.

## 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:
    ProductTransactionRecord:
      type: object
      description: A single product transaction record. Only currently effective
        records are returned.
      properties:
        clientCode:
          type: string
          description: Rule-engine client code.
          example: OTP_BPM
        planCode:
          type: string
          example: ANN100
        transaction:
          type: string
          description: Transaction type identifier.
          example: FullWithdrawal
        transactionDesc:
          type: string
          nullable: true
          example: Full Withdrawal
        effectiveDate:
          type: string
          format: date
          description: Record validity start (ISO 8601, inclusive).
          example: 2025-01-01
        expirationDate:
          type: string
          format: date
          nullable: true
          description: Record validity end (ISO 8601, inclusive). null means no expiry.
          example: null
    ProductTransactionReferenceResponse:
      type: object
      description: Wrapped response envelope for the product-transactions reference
        endpoint.
      required:
        - referenceType
        - results
      properties:
        referenceType:
          type: string
          example: product-transactions
        results:
          type: array
          items:
            $ref: "#/components/schemas/ProductTransactionRecord"
```
