Bulk install packages

POST /api/fleet/epm/packages/_bulk

Query parameters

  • prerelease boolean

    Whether to return prerelease versions of packages (e.g. beta, rc, preview)

    Default value is false.

application/json; Elastic-Api-Version=2023-10-31

Body

Responses

  • 200 application/json; Elastic-Api-Version=2023-10-31

    OK

    Hide response attributes Show response attributes object
  • 400 application/json; Elastic-Api-Version=2023-10-31

    Generic Error

    Hide response attributes Show response attributes object
POST /api/fleet/epm/packages/_bulk
curl \
 -X POST http://localhost:5601/api/fleet/epm/packages/_bulk \
 -H "Content-Type: application/json; Elastic-Api-Version=2023-10-31"
Request examples
{
  "force": true,
  "packages": [
    "string"
  ]
}
Response examples (200)
{
  "items": [
    {
      "name": "string",
      "version": "string"
    }
  ],
  "response": [
    {
      "name": "string",
      "version": "string"
    }
  ]
}
Response examples (400)
{
  "error": "string",
  "message": "string",
  "statusCode": 42.0
}