Download a debug bundle file

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

Download a debug bundle file.

Path parameters

  • filename string Required

    The name of the file to download.

Responses

  • 200 application/zip

    Debug bundle file successfully downloaded.

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

GET /v1/debug/bundle/file/{filename}
curl \
 --request GET '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"
}