Skip to content
Draft
Prev Previous commit
Next Next commit
Updates
  • Loading branch information
adutta-newrelic committed Nov 21, 2025
commit fc731718754a101f24228fa3bcf9c83a6827561d
Original file line number Diff line number Diff line change
Expand Up @@ -169,24 +169,26 @@ See [License Key](/docs/apis/intro-apis/new-relic-api-keys/#license-key) for inf
id="nerdgraph-query-get-destinationId"
title="NerdGraph Query to get destinationId"
>
```yaml
{
actor {
account(id: 12345678) {
aiNotifications {
destinations(filters: {type: MICROSOFT_TEAMS, active: true}) {
entities {
createdAt
id
name
active
}
}

```yaml
{
actor {
account(id: 12345678) {
aiNotifications {
destinations(filters: {type: MICROSOFT_TEAMS, active: true}) {
entities {
createdAt
id
name
active
}
}
}
}
```
}
}
```

</Collapser>
</CollapserGroup>

Expand Down Expand Up @@ -334,30 +336,32 @@ See [License Key](/docs/apis/intro-apis/new-relic-api-keys/#license-key) for inf
<p>
Refer [Destinations](/docs/alerts/get-notified/destinations/) to know more about destinations.
</p>

<CollapserGroup>
<Collapser
id="nerdGraph-Query-Get-DestinationId"
title="NerdGraph Query to get destinationId"
>
```yaml
{
actor {
account(id: 12345678) {
aiNotifications {
destinations(filters: {type: EMAIL, active: true}) {
entities {
createdAt
id
name
active
}

```yaml
{
actor {
account(id: 12345678) {
aiNotifications {
destinations(filters: {type: EMAIL, active: true}) {
entities {
createdAt
id
name
active
}
}
}
}
}
```
}
```

</Collapser>
</CollapserGroup>
</td>
Expand Down Expand Up @@ -580,29 +584,32 @@ See [License Key](/docs/apis/intro-apis/new-relic-api-keys/#license-key) for inf
<p>
Refer [Destinations](/docs/alerts/get-notified/destinations/) to know more about destinations.
</p>

<CollapserGroup>
<Collapser
id="nerdGraph-Query-Get-DestinationId"
id="nerdgraph-query-get-destinationid"
title="NerdGraph Query to get destinationId"
>
```yaml
{
actor {
account(id: 12345678) {
aiNotifications {
destinations(filters: {type: SLACK, active: true}) {
entities {
createdAt
id
name
active
}
}

```yaml
{
actor {
account(id: 12345678) {
aiNotifications {
destinations(filters: {type: SLACK, active: true}) {
entities {
createdAt
id
name
active
}
}
}
}
```
}
}
```

</Collapser>
</CollapserGroup>
</td>
Expand Down Expand Up @@ -762,7 +769,7 @@ See [License Key](/docs/apis/intro-apis/new-relic-api-keys/#license-key) for inf
<td>**runScopeType**</td>
<td>Required</td>
<td>String</td>
<td>Scope type of the workflow. Scope type must be 'ACCOUNT'. Well support starting a workflow at the organization level in the future</td>
<td>Scope type of the workflow. Scope type must be `ACCOUNT`. We'll support starting a workflow at the organization level in the future</td>
</tr>
<tr>
<td>**runScopeId**</td>
Expand Down Expand Up @@ -823,7 +830,7 @@ See [License Key](/docs/apis/intro-apis/new-relic-api-keys/#license-key) for inf
<tr>
<td>**errorMessage**</td>
<td>String</td>
<td>Failure reason as message.`</td>
<td>`Failure reason as message.`</td>
</tr>
</tbody>
</table>
Expand Down
Loading