add_activity_to_incident
Add a note to an existing incident's timeline to document updates, observations, or actions taken during incident management.
Instructions
Add a note (userNote activity) to an existing incident's timeline
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | The body of the activity | |
eventTime | No | The time that the activity occurred | |
incidentId | Yes | The ID of the incident to add activity to |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "The body of the activity",
"type": "string"
},
"eventTime": {
"description": "The time that the activity occurred",
"type": "string"
},
"incidentId": {
"description": "The ID of the incident to add activity to",
"type": "string"
}
},
"required": [
"incidentId",
"body"
],
"type": "object"
}