createIncidentActionItem
Generate an action item for a specific incident, including details like summary, priority, status, and assigned users or groups, to track and resolve tasks effectively.
Instructions
Creates a new action item from provided data
Path Parameters:
incident_id (Required): No description.
Responses:
201 (Success): incident_action_item created
Content-Type:
application/vnd.api+json
Example:
{
"key": "value"
}
401: responds with unauthorized for invalid token
Content-Type:
application/vnd.api+json
Example:
{
"key": "value"
}
422: invalid request
Content-Type:
application/vnd.api+json
Example:
{
"key": "value"
}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | ||
incident_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"properties": {
"attributes": {
"additionalProperties": false,
"properties": {
"assigned_to_group_ids": {
"description": "IDs of groups you wish to assign this action item",
"items": {
"type": "string"
},
"type": "array"
},
"assigned_to_user_id": {
"description": "ID of user you wish to assign this action item",
"nullable": true,
"type": "integer"
},
"description": {
"description": "The description of the action item",
"nullable": true,
"type": "string"
},
"due_date": {
"description": "The due date of the action item",
"nullable": true,
"type": "string"
},
"jira_issue_id": {
"description": "The Jira issue ID.",
"nullable": true,
"type": "string"
},
"jira_issue_url": {
"description": "The Jira issue URL.",
"nullable": true,
"type": "string"
},
"kind": {
"description": "The kind of the action item",
"enum": [
"task",
"follow_up"
],
"type": "string"
},
"priority": {
"description": "The priority of the action item",
"enum": [
"high",
"medium",
"low"
],
"type": "string"
},
"status": {
"description": "The status of the action item",
"enum": [
"open",
"in_progress",
"cancelled",
"done"
],
"type": "string"
},
"summary": {
"description": "The summary of the action item",
"type": "string"
}
},
"required": [
"summary"
],
"type": "object"
},
"type": {
"enum": [
"incident_action_items"
],
"type": "string"
}
},
"required": [
"type",
"attributes"
],
"type": "object"
},
"incident_id": {
"type": "string"
}
},
"required": [
"incident_id",
"data"
],
"type": "object"
}