This page provides a reference for all New Relic Issue actions available in the workflow automation actions catalog. These actions let you acknowledge, unacknowledge, and resolve Alert Intelligence issues, and query issues to enable conditional logic in your workflows.
Prerequisites
Before using New Relic Issue actions in workflow automation, ensure you have:
- A New Relic account with appropriate permissions to manage Alert Intelligence issues.
- The necessary permissions for the specific New Relic services you plan to use.
Issue actions
Acknowledges an open New Relic issue (AI Issues), marking it as ACKNOWLEDGED. New Relic records who acknowledged it and the timestamp on the issue record (acknowledgedBy / acknowledgedAt) as a side effect of the mutation. Built on newrelic.nerdgraph.execute.
The following table describes all available input fields for this action.
Input | Optionality | Type | Description | Example |
|---|---|---|---|---|
accountId | Required | Int | The New Relic account that owns the issue. Must be a positive integer. |
|
issueId | Required | String | The AI Issues issue identifier to acknowledge. Must be a valid UUID. |
|
selectors | Optional | List | JQ selectors to extract specific values from the response. | |
The following table describes all output fields returned by this action.
Output | Type | Description |
|---|---|---|
success | Boolean |
|
errorMessage | String | Contains an error message only when the call fails at the HTTP/transport level, distinct from |
data | Map | NerdGraph response: Use |
The following example shows how to use this action.
Workflow example |
|---|
|
Reverts a previously acknowledged New Relic issue (AI Issues) back to an unacknowledged state, clearing the acknowledgedBy / acknowledgedAt fields on the issue record. Built on newrelic.nerdgraph.execute.
The following table describes all available input fields for this action.
Input | Optionality | Type | Description | Example |
|---|---|---|---|---|
accountId | Required | Int | The New Relic account that owns the issue. Must be a positive integer. |
|
issueId | Required | String | The AI Issues issue identifier to revert to unacknowledged. Must be a valid UUID. |
|
selectors | Optional | List | JQ selectors to extract specific values from the response. | |
The following table describes all output fields returned by this action.
Output | Type | Description |
|---|---|---|
success | Boolean |
|
errorMessage | String | Contains an error message only when the call fails at the HTTP/transport level, distinct from |
data | Map | NerdGraph response: Use |
The following example shows how to use this action.
Workflow example |
|---|
|
Resolves an open New Relic issue (AI Issues), closing it once remediation steps are complete. The issue's state transitions to CLOSED and New Relic records the resolution on the issue record. Built on newrelic.nerdgraph.execute.
The following table describes all available input fields for this action.
Input | Optionality | Type | Description | Example |
|---|---|---|---|---|
accountId | Required | Int | The New Relic account that owns the issue. Must be a positive integer. |
|
issueId | Required | String | The AI Issues issue identifier to resolve. Must be a valid UUID. |
|
selectors | Optional | List | JQ selectors to extract specific values from the response. | |
The following table describes all output fields returned by this action.
Output | Type | Description |
|---|---|---|
success | Boolean |
|
errorMessage | String | Contains an error message only when the call fails at the HTTP/transport level, distinct from |
data | Map | NerdGraph response: Use |
The following example shows how to use this action.
Workflow example |
|---|
|
Queries and lists New Relic issues (AI Issues) for an account, returning real-time status, timeline, correlated entities, and impact details for active or past issues. Supports filtering by state, priority, source, entity, condition, policy, correlation and acknowledgment status, a time window, and cursor-based pagination. Built on newrelic.nerdgraph.execute.
The following table describes all available input fields for this action.
Input | Optionality | Type | Description | Example |
|---|---|---|---|---|
accountId | Required | Int | The New Relic account whose issues to list. Must be a positive integer. |
|
issueIds | Optional | List | Issue IDs to include. Must be a JSON array of UUID strings. |
|
states | Optional | List | One or more of |
|
priority | Optional | List | One or more of |
|
sources | Optional | List | One or more of |
|
entityGuids | Optional | List | Entity GUIDs to filter by. |
|
entityTypes | Optional | List | Entity types to filter by. |
|
conditionIds | Optional | List | Alert condition IDs to filter by. Must be a JSON array of integers. |
|
policyIds | Optional | List | Alert policy IDs to filter by. Must be a JSON array of integers. |
|
isAcknowledged | Optional | Boolean | Acknowledgment status filter. |
|
isCorrelated | Optional | Boolean | Indicates whether New Relic's Applied Intelligence has merged this issue with other related issues to reduce noise. |
|
mutingStates | Optional | List | Notification suppression status. One or more of |
|
contains | Optional | String | Case-sensitive, free-text match on key issue attributes. |
|
startTime | Optional | Int | Time window start, epoch milliseconds. Must be non-negative. Requires |
|
endTime | Optional | Int | Time window end, epoch milliseconds. Must be non-negative. Requires |
|
cursor | Optional | String | Opaque pagination token from a prior call's |
|
selectors | Optional | List | JQ selectors to extract specific values from the response. | |
The following table describes all output fields returned by this action.
Output | Type | Description |
|---|---|---|
success | Boolean |
|
errorMessage | String | Contains an error message only when the call fails at the HTTP/transport level. |
data | Map | NerdGraph response. Contains |
The following examples show how to use this action with different filter configurations.
Workflow example |
|---|
No filters — list every issue on the account, regardless of state, priority, or other filters. Only The following example uses basic filters to list active, high-priority issues for an account: The following example uses multiple filters for unacknowledged, unmuted, critical issues within a specific time window, with selectors flattening the response for pagination: To page through additional results from example 3, take the |