Get agents by action ids
[Required authorization] Route required privileges: ALL of [fleet-agents-read].
POST
/api/fleet/agents
curl \
--request POST https://localhost:5601/api/fleet/agents \
--header "Content-Type: application/json" \
--header "kbn-xsrf: true" \
--data '{"actionIds":["string"]}'
Request examples
# Headers
kbn-xsrf: true
# Payload
{
"actionIds": [
"string"
]
}
Response examples (200)
{
"items": [
"string"
]
}
Response examples (400)
{
"error": "string",
"message": "string",
"statusCode": 42.0
}