Get agent setup info

GET /api/fleet/agents/setup

Get agent setup info

Headers

  • The version of the API to use

    Value is 2023-10-31. Default value is 2023-10-31.

Responses

GET /api/fleet/agents/setup
curl \
 -X GET https://localhost:5601/api/fleet/agents/setup \
 -H "elastic-api-version: 2023-10-31"
Response examples (200)
{
  "is_secrets_storage_enabled": true,
  "is_space_awareness_enabled": true,
  "isReady": true,
  "missing_optional_features": [
    "encrypted_saved_object_encryption_key_required"
  ],
  "missing_requirements": [
    "security_required"
  ],
  "package_verification_key_id": "string"
}
Response examples (400)
{
  "error": "string",
  "message": "string",
  "statusCode": 42.0
}