Spaces method and path for this operation:
get /s/{space_id}/api/fleet/agentless_policies
Refer to Spaces for more information.
Deprecated. Use GET /api/fleet/managed_integrations instead. List managed integrations
Query parameters
-
Page number. Defaults to
1. -
Number of results per page. Defaults to
20. -
Field to sort results by. Defaults to
updated_at.Maximum length is
256. -
Sort order, ascending or descending. Defaults to
desc.Values are
descorasc. -
A KQL query string to filter results. Filtering is restricted to the following fields:
name,namespace,package.name.Maximum length is
4096.
GET
/api/fleet/agentless_policies
curl \
--request GET 'https://localhost:5601/api/fleet/agentless_policies' \
--header "Authorization: $API_KEY"
Response examples (200)
Example response for listing managed integrations
{
"items": [
{
"created_at": "2025-11-06T18:27:43.541Z",
"created_by": "test_user",
"description": "test",
"id": "d52a7812-5736-4fdc-aed8-72152afa1ffa",
"inputs": {
"ESS Billing-cel": {
"enabled": true,
"streams": {
"ess_billing.billing": {
"enabled": true
},
"ess_billing.credits": {
"enabled": false
}
},
"vars": {
"api_key": {
"id": "QY1sWpoBbWcMW-edr0Ee",
"isSecretRef": true
},
"organization_id": "1234",
"url": "https://billing.elastic-cloud.com"
}
}
},
"name": "ess_billing-1",
"namespace": "default",
"package": {
"name": "ess_billing",
"title": "Elasticsearch Service Billing",
"version": "1.6.0"
},
"updated_at": "2025-11-06T18:27:43.541Z",
"updated_by": "test_user"
},
{
"cloud_connector": {
"cloud_connector_id": "aws-connector-67890",
"enabled": true
},
"created_at": "2025-11-06T18:27:43.541Z",
"created_by": "test_user",
"description": "CSPM integration for AWS with cloud connector",
"id": "aws-policy-12345",
"inputs": {
"cspm-cloudbeat/cis_aws": {
"enabled": true
}
},
"name": "cspm-aws-policy",
"namespace": "default",
"package": {
"name": "cloud_security_posture",
"title": "Cloud Security Posture Management",
"version": "3.1.1"
},
"updated_at": "2025-11-06T18:27:43.541Z",
"updated_by": "test_user",
"vars": {
"deployment": "aws",
"posture": "cspm"
}
}
],
"page": 1,
"perPage": 20,
"total": 2
}
Response examples (400)
Example of a generic error response
{
"error": "Bad Request",
"message": "An error message describing what went wrong",
"statusCode": 400
}