FireHydrant Conversations API

The Conversations API from FireHydrant — 1 operation(s) for conversations.

OpenAPI Specification

firehydrant-conversations-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: FireHydrant REST Audits Conversations API
  description: Incident management platform exposing programmatic access to incidents, services, teams, environments, runbooks, change events, on-call schedules, Signals event sources, status pages, retrospectives, and integrations. Authentication is by Bot User API token presented as a Bearer token.
  version: '1.0'
  contact:
    name: FireHydrant
    url: https://docs.firehydrant.com/reference
servers:
- url: https://api.firehydrant.io/v1
  description: Production
security:
- bearerAuth: []
tags:
- name: Conversations
paths:
  /conversations/{conversation_id}/comments:
    post:
      summary: Create a comment on a conversation
      operationId: createComment
      parameters:
      - name: conversation_id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - body
              properties:
                body:
                  type: string
      responses:
        '201':
          description: Created
      tags:
      - Conversations
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer