Update a Fleet Server host Beta
Update a Fleet Server host by ID.
Body
-
host_urls array[string]
At least
1
element. -
is_default boolean
-
is_internal boolean
-
name string
PUT
/api/fleet/fleet_server_hosts/{itemId}
curl \
-X PUT https://<KIBANA_URL>/api/fleet/fleet_server_hosts/{itemId} \
-H "Content-Type: application/json; Elastic-Api-Version=2023-10-31" \
-H "kbn-xsrf: true"
Request examples
# Headers
kbn-xsrf: true
# Payload
{
"host_urls": [
"string"
],
"is_default": true,
"is_internal": true,
"name": "string",
"proxy_id": "string"
}
Response examples (200)
{
"item": {
"host_urls": [
"string"
],
"id": "string",
"is_default": false,
"is_internal": true,
"is_preconfigured": false,
"name": "string",
"proxy_id": "string"
}
}
Response examples (400)
{
"error": "string",
"message": "string",
"statusCode": 42.0
}