Spaces method and path for this operation:
get /s/{space_id}/api/fleet/epm/categories
Refer to Spaces for more information.
Get a list of integration categories.
[Required authorization] Route required privileges: integrations-read OR fleet-setup OR fleet-all.
GET
/api/fleet/epm/categories
curl \
--request GET 'https://<KIBANA_URL>/api/fleet/epm/categories' \
--header "Authorization: $API_KEY"
Response examples (200)
List of integration categories
{
"items": [
{
"count": 42,
"id": "security",
"title": "Security"
},
{
"count": 38,
"id": "observability",
"title": "Observability"
}
]
}
Response examples (400)
Example of a generic error response
{
"error": "Bad Request",
"message": "An error message describing what went wrong",
"statusCode": 400
}