Update an agent binary download source
Update an agent binary download source by ID.
[Required authorization] Route required privileges: ALL of [fleet-settings-all].
Path parameters
-
sourceId
string Required
PUT
/api/fleet/agent_download_sources/{sourceId}
curl \
--request PUT 'http://localhost:5622/api/fleet/agent_download_sources/{sourceId}' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--header "kbn-xsrf: true" \
--data '{"host":"https://example.com","id":"string","is_default":false,"name":"string","proxy_id":"string"}'
Request examples
# Headers
kbn-xsrf: true
# Payload
{
"host": "https://example.com",
"id": "string",
"is_default": false,
"name": "string",
"proxy_id": "string"
}
Response examples (200)
{
"item": {
"host": "https://example.com",
"id": "string",
"is_default": false,
"name": "string",
"proxy_id": "string"
}
}
Response examples (400)
{
"error": "string",
"message": "string",
"statusCode": 42.0
}