Get Support Bundles List

JFrog REST APIs

Content Type
REST API
ft:sourceType
Paligo

Note

This API is deprecated and only applies for Artifactory versions 7.47 and earlier.

Starting from Artifactory version 7.49, Mission Control is integrated directly into Artifactory as a service and will be included in the Artifactory Support Bundle.

Description: Get the list of available support bundles.

Since: 4.0

Security: Requires an admin user

Usage: GET /mc/api/v1/system/support/bundles

Return codes:200 - Successful

403 - Unauthorized

Sample usage:

GET /mc/api/v1/system/support/bundles
{
  "count" : 2,
  "bundles" : [ {
    "name" : "A",
    "description" : "aaa",
    "id" : "1",
    "created" : "2018-10-01T09:50:11Z"
}, {
   "name" : "B",
   "id" : "2",
   "created" : "2018-10-01T09:50:11Z"
  } ]
}