Innago Health API

API health check

OpenAPI Specification

innago-health-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Innago Expenses Health API
  description: REST API for Innago property management platform enabling programmatic access to properties, units, tenants, leases, invoices, payments, expenses, and maintenance tickets. Authentication uses Bearer token and API key headers.
  version: v1
  contact:
    name: Innago Support
    url: https://innago.com/contact/
    email: support@innago.com
  termsOfService: https://auth.innago.com/termsandcondition
servers:
- url: https://api-my.innago.com/openapi
  description: Innago production API
security:
- BearerAuth: []
  ApiKeyAuth: []
tags:
- name: Health
  description: API health check
paths:
  /v1/health:
    get:
      operationId: getHealth
      summary: Health check
      description: Verify API availability.
      tags:
      - Health
      security:
      - BearerAuth: []
        ApiKeyAuth: []
      responses:
        '200':
          description: API is healthy
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key