Spaces method and path for this operation:
get /s/{space_id}/api/fleet/epm/packages/installed
Refer to Spaces for more information.
Get a list of all currently installed integration packages.
[Required authorization] Route required privileges: integrations-read OR fleet-setup OR fleet-all.
GET
/api/fleet/epm/packages/installed
curl \
--request GET 'https://<KIBANA_URL>/api/fleet/epm/packages/installed' \
--header "Authorization: $API_KEY"
Response examples (200)
List of installed integration packages
{
"items": [
{
"name": "system",
"status": "installed",
"title": "System",
"version": "1.55.0"
},
{
"name": "elastic_agent",
"status": "installed",
"title": "Elastic Agent",
"version": "1.15.0"
}
],
"searchExcluded": 0,
"total": 2
}
Response examples (400)
Example of a generic error response
{
"error": "Bad Request",
"message": "An error message describing what went wrong",
"statusCode": 400
}