List Available Bundles for a CIS SecureSuite Platform Version

The “CIS SecureSuite Platform Bundles” endpoint allows SecureSuite members to view a list of the available bundles for a version of the CIS SecureSuite Platform.

Note: Use the “List Available CIS SecureSuite Platform Versions” endpoint to view a list of available versions.

Request Type

Visibility

GET

SecureSuite Members Only

Base URL

https://workbench.cisecurity.org/api/vendor/v1

Endpoint

/securesuite-platform/{version}/bundles

Request Payload/Parameters

In order to provide download authorization, members must first authenticate their license key using the /license endpoint. The response from that endpoint is an authorization token.

Request Headers

Header Name

Description

X-SecureSuite-Token

The token received from a successful license key verification, e.g., 1234|7b68c544113bc4notvalid358ffd4ba7f254e39c4a842cefed748

URL Parameters

URL Parameter

Description

version

The version number identifier for the CIS SecureSuite Platform version to see the bundle list for, e.g. “1.2.0”

Response Payload

Description/Fields

The response payload is a JSON array of strings representing the bundle options of the CIS SecureSuite Platform available for that version.

Response Example

{
"linux":[
        {
                "name":"CIS SecureSuite Platform Linux",
                "path":"\/api\/vendor\/v1\/securesuite-platform\/1.2.0\/linux"
        }
],
"windows":[
        {
                "name":"CIS SecureSuite Platform Windows",
                "path":"\/api\/vendor\/v1\/securesuite-platform\/1.2.0\/windows"
        }
]
}