entries_get
Retrieve War Room entries for a specific incident or alert, with filters for time, ID, tags, and entry types.
Instructions
Get War Room entries
Get the War Room entries for a specific incident or alert. You can filter by timestamp, ID, and tags. You can also choose which type of entries you want to retrieve (notes, chat, attachments...). The response depends on what type of entry you choose to retrieve.
[POST /public_api/v1/entries/get] · Incidents
Example request body:
{
"id": "INCIDENT-1",
"filter": {
"firstID": "q3452345",
"lastID": "50577055-a7f3-4328-8eec-5ff8433e21e6@2",
"pagesize": 4,
"fromTime": "2024-11-24T09:14:14Z",
"categories": [
"tags"
],
"tags": [
"amir100",
"amir200"
]
}
}Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | The ID of the incident or alert you want to get the War Room entries of. For an incident ID, prepend "INCIDENT-" to the incident ID. For example, if the incident ID is 3, the value of `id` should be `INCIDENT-3`. For alert IDs, just put the ID. For example, if the alert ID is 3, the value of `id` should be `3`. | |
| filter | No |