すべてのインシデントを取得する

GET /incidents.json

未解決および解決済み/後の状態を含む、50 の最新のインシデントを検索します。

応答

  • 200 application/ JSON

    すべてのインシデントが正常に取得されました

    応答属性の非表示 応答属性の表示 オブジェクト
    • ページ オブジェクト 必須
      ページ属性を非表示にする ページ属性の表示 オブジェクト
      • id string 必須

        ページの一意の識別子

      • name string 必須

        ステータスページの名前

      • URL string(uri) 必須

        ステータスページのURL

      • Updated_at string(date-time) 必須

        ページが最後に更新されたときのタイムスタンプ(ISO 8601)

    • イベント array[オブジェクト] 必須

      インシデントのリスト

      インシデント属性を非表示 インシデント属性の表示 オブジェクト
      • created_at string(date-time) 必須

        インシデントが作成されたときのタイムスタンプ(ISO 8601)

      • id string 必須

        インシデントの一意の識別子

      • 影響 string 必須

        影響レベル

        値は、noneminormajorcritical、または maintenance です。

      • identity_updates array[オブジェクト] 必須

        インシデントの更新のリスト

        insert_updates 属性を非表示にします insert_updates 属性の表示 オブジェクト
        • body string 必須

          Update message

        • created_at string(date-time) 必須

          更新が作成されたときのタイムスタンプ(ISO 8601)

        • display_at string(datetime)| null 必須

          表示のタイムスタンプ(ISO 8601)

        • id string 必須

          Unique update identifier

        • insert_id string 必須

          一意のインシデント識別子

        • 状態 string 必須

          Update status

          値は、investigatingidentifiedmonitoringresolvedpostmortemscheduledin_progressverifying、または completed です。

        • Updated_at string(date-time) 必須

          更新が最後に変更されたときのタイムスタンプ(ISO 8601)

      • monitoring_at string(datetime)| null

        モニタリング開始時のタイムスタンプ(ISO 8601)

      • name string 必須

        インシデン名

      • page_id string 必須

        Unique page identifier

      • postmortem_body string | null

        Postmortem analysis body

      • postmortem_body_last_updated_at string(datetime)| null

        変更後のタイムスタンプ(ISO 8601)

      • postMorem_ignoreed ブール値

        経過時間は無視されるかどうか

      • postMorem_notified_subscribers ブール値

        サブスクリプションに変更が通知されたかどうか

      • postMorem_public_at string(datetime)| null

        変更後のタイムスタンプ(ISO 8601)

      • 解決_at string(datetime)| null

        インシデントが解決されたときのタイムスタンプ(ISO 8601)

      • scheduled_for string(datetime)| null

        予定された開始時間(メンテナンス)(ISO 8601)

      • scheduled_remind_prior ブール値

        スケジュールされた時刻より前にリダイレクトを送信するかどうか

      • scheduled_remind_at string(datetime)| null

        リダイレクトが送信されたときのタイムスタンプ(ISO 8601)

      • scheduled_until string(datetime)| null

        終了予定(ISO 8601)

      • 状態 string 必須

        現在のインシデントステータス

        値は、investigatingidentifiedmonitoringresolved、または postmortem です。

      • Updated_at string(date-time) 必須

        インシデントが最後に更新されたときのタイムスタンプ(ISO 8601)

  • 404 application/ JSON

    要求されたリソースが見つかりませんでした

    応答属性の非表示 応答属性の表示 オブジェクト
    • メッセージ string 必須

      エラーメッセージ

    • コード integer

      エラー コード

  • 500 application/ JSON

    内部サーバーエラー

    応答属性の非表示 応答属性の表示 オブジェクト
    • メッセージ string 必須

      エラーメッセージ

    • コード integer

      エラー コード

GET /incidents.json
curl \
 --request GET 'https://status.mongodb.com/api/v2/incidents.json'
応答の例(200)
{
  "page": {
    "id": "y2j98763l56x",
    "name": "MongoDB Cloud Status",
    "url": "https://status.mongodb.com",
    "updated_at": "2025-03-11T00:52:20-07:00"
  },
  "incidents": [
    {
      "created_at": "2025-05-04T09:42:00Z",
      "id": "string",
      "impact": "none",
      "incident_updates": [
        {
          "body": "string",
          "created_at": "2025-05-04T09:42:00Z",
          "display_at": "2025-05-04T09:42:00Z",
          "id": "string",
          "incident_id": "string",
          "status": "investigating",
          "updated_at": "2025-05-04T09:42:00Z"
        }
      ],
      "monitoring_at": "2025-05-04T09:42:00Z",
      "name": "string",
      "page_id": "string",
      "postmortem_body": "string",
      "postmortem_body_last_updated_at": "2025-05-04T09:42:00Z",
      "postmortem_ignored": true,
      "postmortem_notified_subscribers": true,
      "postmortem_published_at": "2025-05-04T09:42:00Z",
      "resolved_at": "2025-05-04T09:42:00Z",
      "scheduled_for": "2025-05-04T09:42:00Z",
      "scheduled_remind_prior": true,
      "scheduled_reminded_at": "2025-05-04T09:42:00Z",
      "scheduled_until": "2025-05-04T09:42:00Z",
      "shortlink": "https://example.com",
      "status": "investigating",
      "updated_at": "2025-05-04T09:42:00Z"
    }
  ]
}
応答の例(404)
{
  "code": 404,
  "message": "Resource not found"
}
応答の例(500)
{
  "code": 500,
  "message": "Internal server error"
}