Spaces method and path for this operation:
get /s/{space_id}/api/fleet/proxies
Refer to Spaces for more information.
List all Fleet proxies.
[Required authorization] Route required privileges: fleet-settings-read.
GET
/api/fleet/proxies
curl \
--request GET 'https://localhost:5601/api/fleet/proxies' \
--header "Authorization: $API_KEY"
Response examples (200)
List of Fleet proxies
{
"items": [
{
"id": "proxy-id-1",
"is_preconfigured": false,
"name": "My proxy",
"url": "http://proxy.example.com:3128"
}
],
"page": 1,
"perPage": 20,
"total": 1
}
Response examples (400)
Example of a generic error response
{
"error": "Bad Request",
"message": "An error message describing what went wrong",
"statusCode": 400
}