Spaces method and path for this operation:
get /s/{space_id}/api/fleet/epm/packages
Refer to Spaces for more information.
Get a list of integration packages available in the registry.
[Required authorization] Route required privileges: integrations-read OR fleet-setup OR fleet-all.
GET
/api/fleet/epm/packages
curl \
--request GET 'https://localhost:5601/api/fleet/epm/packages' \
--header "Authorization: $API_KEY"
Response examples (200)
List of available integration packages
{
"items": [
{
"categories": [
"cloud"
],
"description": "Collect logs and metrics from Amazon Web Services",
"id": "aws",
"name": "aws",
"status": "not_installed",
"title": "AWS",
"version": "2.10.0"
}
],
"searchExcluded": 0,
"total": 1
}
Response examples (400)
Example of a generic error response
{
"error": "Bad Request",
"message": "An error message describing what went wrong",
"statusCode": 400
}