> For the complete documentation index, see [llms.txt](https://docs.thebrief.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.thebrief.ai/public-api/rest-api/webhooks/webhook-action-types.md).

# Webhook action types

## List webhook action types

This endpoint makes an HTTP GET request to retrieve a list of action types to which will send an event to webhookt.

**Request Body** This request does not require a request body.

### Request

* Endpoint: `https://api.thebrief.ai/v1/webhookActions`

### Response

* Status: 200
* Content-Type: application/json

The response will contain an array of webhook action, where each action is represented by an object with "id", "name", "description", "config" and "createdAt" properties.

Example response:

```
{
    "response": [
        {   
            "id": 1,
            "name": "comment/create",
            "description": "Comment created",
            "config": null,
            "createdAt": "2024-09-12T17:57:23:4242
        },
        {
            "id": 5,
            "name": "session/finish",
            "description": "Session finished",
            "config": null,
            "createdAt": "2024-09-19T16:17:29.4512"
        }
    ]
}
```
