---
title: "Outgoing webhooks HTTP API | Grafana OnCall documentation"
description: "Outgoing webhooks (actions) Used in escalation policies with type trigger_action. List actions shell Copy curl \"{{API_URL}}/api/v1/actions/\" \\ --request GET \\ --header \"Authorization: meowmeowmeow\" \\ --header \"Content-Type: application/json\" The above command returns JSON structured in the following way:"
---

> For a curated documentation index, see [llms.txt](/llms.txt). For the complete documentation index, see [llms-full.txt](/llms-full.txt).

# Outgoing webhooks (actions)

Used in escalation policies with type `trigger_action`.

## List actions

shell ![Copy code to clipboard](/media/images/icons/icon-copy-small-2.svg) Copy

```shell
curl "{{API_URL}}/api/v1/actions/" \
  --request GET \
  --header "Authorization: meowmeowmeow" \
  --header "Content-Type: application/json" 
```

The above command returns JSON structured in the following way:

JSON ![Copy code to clipboard](/media/images/icons/icon-copy-small-2.svg) Copy

```json
{
    "count": 1,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": "KGEFG74LU1D8L",
            "name": "Publish alert group notification to JIRA"
        }
    ]
}
```

**HTTP request**

`GET {{API_URL}}/api/v1/actions/`
