Security Endpoint Management API
Generate a memory dump from the host machine
Spaces method and path for this operation:
<div><span class="operation-verb post">post</span> <span class="operation-path">/s/{space_id}/api/endpoint/action/memory_dump</span></div>Refer to Spaces for more information.
Generates memory dumps on the targeted host.
post/api/endpoint/action/memory_dump
Request body
Example request
{
"agent_type": "endpoint",
"alert_ids": [
"alert-id-1",
"alert-id-2"
],
"case_ids": [
"case-id-1",
"case-id-2"
],
"comment": "This is a comment",
"endpoint_ids": [
"endpoint-id-1",
"endpoint-id-2"
]
}Response
Indicates a successful call.
Example response
{
"data": {
"agents": [
"ed518850-681a-4d60-bb98-e22640cae2a8"
],
"agentState": {
"ed518850-681a-4d60-bb98-e22640cae2a8": {
"isCompleted": false,
"wasSuccessful": false
}
},
"agentType": "__agent__type__here_",
"command": "__command__name__here__",
"createdBy": "elastic",
"hosts": {
"ed518850-681a-4d60-bb98-e22640cae2a8": {
"name": "gke-node-1235412"
}
},
"id": "233db9ea-6733-4849-9226-5a7039c7161d",
"isCompleted": false,
"isExpired": false,
"outputs": {},
"parameters": {},
"startedAt": "2022-07-29T19:08:49.126Z",
"status": "pending",
"wasSuccessful": false
}
}