Get Distribution Version
Get a list of all the agent versions.
Synopsis
URI | /public_api/v1/distributions/get_versions/ |
HTTP Method | POST |
Required License | Cortex XDR Prevent or Cortex XDR Pro per Endpoint |
Description
Get a list of all the agent
versions to use for creating a distribution list.
Request Fields
The body of this request
contains a an empty JSON object.
Request Example
curl -X POST https://api-{fqdn}/public_api/v1/distributions/get_versions/ \ -H "x-xdr-auth-id:{API_KEY_ID}" \ -H "Authorization:{API_KEY}" \ -H "Content-Type:application/json" \ -d '{}'
Success Response
Upon success,
the HTTP response code is 200. In addition, this API returns a JSON
object containing the query status, as well as an array of JSON
objects.
Field | Description |
---|---|
reply | JSON object containing the query result. |
windows | String list of Windows agent versions. |
linux | String list of Linux agent versions. |
mac | String list of Mac agent versions. |
Success Response Example
{ "reply":{ "windows":[ "<version1>", "<version2>", "<version3>", "<version4>" ], "linux":[ "<version1>", "<version2>", "<version3>", "<version4>" ], "macos":[ "<version1>", "<version2>", "<version3>" ] } }
Error Response
Upon error,
the reply includes an HTTP response code, an error message, and
additional information describing the error. The HTTP response code
is one of the following:
Field | Description |
---|---|
400 | Bad Request. Got an invalid JSON. |
401 | Unauthorized access. An issue occurred during authentication.
This can indicate an incorrect key, id, or other invalid authentication
parameters. |
402 | Unauthorized access. User does not have the
required license type to run this API. |
403 | Forbidden access. The provided API Key does
not have the required RBAC permissions to run this API. |
500 | Internal server error. A unified status for
API communication type errors. |
Error Response Format
{"reply": {"err_code": STATUS_CODE, "err_msg": GENERAL_MESSAGE, "err_extra": EXTRA_DATA}}
Recommended For You
Recommended Videos
Recommended videos not found.