---
title: "Zahara BPM Health Check"
url: "https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84/operations/getHealth"
---

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

# Zahara BPM Health Check

`GET` `/bpm/actuator/health`

Operation ID: `getHealth`

Returns the health status of the application

## Responses

- `200` - Application is healthy
- `503` - Application is unhealthy

## 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
paths:
  /bpm/actuator/health:
    get:
      x-internal: true
      summary: Zahara BPM Health Check
      tags:
        - Policy - Transactions
      description: Returns the health status of the application
      operationId: getHealth
      responses:
        "200":
          description: Application is healthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - UP
                      - DOWN
                    example: UP
        "503":
          description: Application is unhealthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - DOWN
                    example: DOWN
```
