Cancel a debug bundle process

DELETE /v1/debug/bundle/{jobid}

Cancel the debug bundle process with a given job ID.

Path parameters

  • jobid string Required

    UUID of the debug bundle job to cancel.

Responses

  • 204

    Debug bundle process cancelled successfully.

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code integer

      The error code.

    • message string

      Error message describing what went wrong.

  • 403 application/json

    Forbidden

    Hide response attributes Show response attributes object
    • code integer

      The error code.

    • message string

      Error message describing what went wrong.

  • 409 application/json

    Conflict

    Hide response attributes Show response attributes object
    • code integer

      The error code.

    • message string

      Error message describing what went wrong.

  • 422 application/json

    Format error

    Hide response attributes Show response attributes object
    • code integer

      The error code.

    • message string

      Error message describing what went wrong.

  • 500 application/json

    Internal error

    Hide response attributes Show response attributes object
    • code integer

      The error code.

    • message string

      Error message describing what went wrong.

DELETE /v1/debug/bundle/{jobid}
curl \
 --request DELETE 'http://localhost:9644/v1/debug/bundle/123e4567-e89b-12d3-a456-426614174000'
Response examples (401)
{
  "code": 42,
  "message": "string"
}
Response examples (403)
{
  "code": 42,
  "message": "string"
}
Response examples (409)
{
  "code": 42,
  "message": "string"
}
Response examples (422)
{
  "code": 42,
  "message": "string"
}
Response examples (500)
{
  "code": 42,
  "message": "string"
}