listIncidentActionItems
Retrieve and manage action items linked to specific incidents on the Rootly MCP server. Use incident_id to filter and paginate results for efficient tracking and resolution.
Instructions
List incident action items
Path Parameters:
incident_id (Required): No description.
Query Parameters:
include: No description.
page_number: No description.
page_size: No description.
Responses:
200 (Success): success
Content-Type:
application/vnd.api+json
Example:
{
"key": "value"
}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
incident_id | Yes | ||
include | No | ||
page_number | No | ||
page_size | No |
Input Schema (JSON Schema)
{
"properties": {
"incident_id": {
"type": "string"
},
"include": {
"type": "string"
},
"page_number": {
"type": "integer"
},
"page_size": {
"type": "integer"
}
},
"required": [
"incident_id"
],
"type": "object"
}