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

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

# TransactionErrorResponse

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://uat.api.zinnia.io
components:
  schemas:
    Details:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
    TransactionErrorResponse:
      type: object
      properties:
        timestamp:
          type: string
          format: date-time
          example: 2023-01-01T12:00:00.000Z
        message:
          type: string
        correlationId:
          type: string
          example: 864e43a0-2c2f-4a11-9d7f-69ed40115066
          description: The unique ID to track each transaction request across all systems
        errorDetails:
          type: array
          items:
            $ref: "#/components/schemas/Details"
```
