Delete a debug bundle file

DELETE /v1/debug/bundle/file/{filename}

Delete the debug bundle file with a given filename.

Path parameters

  • filename string Required

    The name of the file to delete.

Responses

  • 204

    OK

  • 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.

  • 404 application/json

    Debug bundle file not found.

    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.

  • 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/file/{filename}
curl \
 --request DELETE 'http://localhost:9644/v1/debug/bundle/file/debug-bundle-123e4567-e89b-12d3-a456-426614174000.zip'
Response examples (401)
{
  "code": 42,
  "message": "string"
}
Response examples (403)
{
  "code": 42,
  "message": "string"
}
Response examples (404)
{
  "code": 42,
  "message": "string"
}
Response examples (409)
{
  "code": 42,
  "message": "string"
}
Response examples (500)
{
  "code": 42,
  "message": "string"
}