Sha256: b942b96b5ef4f4bce3131fa048afa0cbb675a8e073e29562c3d738b2fe08557e

Contents?: true

Size: 1.64 KB

Versions: 4

Compression:

Stored size: 1.64 KB

Contents

{
  "swagger": "2.0",

  "info": {
    "title": "Honeybadger",
    "description": "Honeybadger Read API v1",
    "version": "1"
  },

  "host": "api.honeybadger.io",

  "basePath": "/v1",

  "schemes": ["https"],

  "produces": ["application/json"],

  "paths": {
    "/projects/{projectId}/faults": {
      "get": {
        "summary": "Returns a list of faults for the given project",
        "externalDocs": {
          "url": "https://www.honeybadger.io/documentation/read_api"
        },
        "operationId": "getFaults",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "required": true,
            "type": "string"
          },
          {
            "name": "page",
            "in": "query"
          }
        ]
      }
    },
    "/projects/{projectId}/faults/{faultId}/notices": {
      "get": {
        "summary": "Returns a list of notices for the given fault",
        "externalDocs": {
          "url": "https://www.honeybadger.io/documentation/read_api"
        },
        "operationId": "getNotices",
        "parameters": [
          {
            "name": "projectId",
            "in": "path",
            "required": true,
            "type": "string"
          },
          {
            "name": "faultId",
            "in": "path",
            "required": true,
            "type": "string"
          },
          {
            "name": "page",
            "in": "query"
          }
        ]
      }
    }
  },

  "securityDefinitions": {
    "authToken": {
      "type": "apiKey",
      "name": "auth_token",
      "in": "query"
    }
  },

  "security": [
    {
      "authToken": []
    } 
  ]
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
apiture-0.2.6 spec/files/honeybadger.json
apiture-0.2.5 spec/files/honeybadger.json
apiture-0.2.4 spec/files/honeybadger.json
apiture-0.2.3 spec/files/honeybadger.json