Get space settings Generally available; added in 9.1.0

GET /api/fleet/space_settings

Spaces method and path for this operation:

get /s/{space_id}/api/fleet/space_settings

Refer to Spaces for more information.

Get the Fleet settings for the current Kibana space.

Responses

  • 200 application/json

    Successful response

    Hide response attribute Show response attribute object
    • item object Required

      Additional properties are NOT allowed.

      Hide item attributes Show item attributes object
      • allowed_namespace_prefixes array[string] Required

        Not more than 100 elements.

      • managed_by string
GET /api/fleet/space_settings
curl \
 --request GET 'https://localhost:5601/api/fleet/space_settings' \
 --header "Authorization: $API_KEY"
Response examples (200)
The Fleet settings for the current Kibana space
{
  "item": {
    "allowed_namespace_prefixes": [
      "team-a",
      "team-b"
    ]
  }
}