entries_insert
Add data or commands to an existing incident or alert War Room. Specify the incident or alert ID and the content to insert.
Instructions
Add War Room entries
Add an entry to the incident or alert War Room, including data. Note: This endpoint only adds entries to existing War Rooms; it does not create them. Ensure that the War Room already exists before making this request.
[POST /public_api/v1/entries/insert] · Incidents
Example request body:
{
"Id": "1",
"data": "!Print value=1000"
}Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | The ID of the incident or alert for which you want to add a War Room entry. 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`. | |
| data | No | The data you want to add or the command you want to run in the War Room. |