Tabs System API

The System API from Tabs — 4 operation(s) for system.

OpenAPI Specification

tabs-fi-system-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Tabs Platform BillingTerms System API
  description: 'REST API for the Tabs revenue automation platform: customers, contracts, items, revenue categories, obligations, billing terms, invoices, payments, credit memos, usage events, and reports. Source: https://docs.tabsplatform.com/llms.txt'
  version: '3'
  contact:
    name: Tabs
    url: https://docs.tabsplatform.com/
servers:
- url: https://api.tabsplatform.com
  description: Production (assumed; consult Tabs docs for exact base URL)
security:
- ApiKeyAuth: []
tags:
- name: System
paths:
  /health:
    get:
      tags:
      - System
      summary: Health check
      operationId: health
      responses:
        '200':
          description: OK
  /health/live:
    get:
      tags:
      - System
      summary: Liveness check
      operationId: healthLive
      responses:
        '200':
          description: OK
  /version:
    get:
      tags:
      - System
      summary: Get API version
      operationId: getVersion
      responses:
        '200':
          description: OK
  /info:
    get:
      tags:
      - System
      summary: Application information
      operationId: getInfo
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Server-side API key issued from the Tabs dashboard for backend integrations.