This method will return a list of all integrations configured for your project.

**Tip**: You can explore and test this endpoint interactively using our [OpenAPI documentation](https://api.deployhq.com/docs).

## URL

```text
/projects/<project>/integrations
```

Replace `<project>` with either the `permalink` or `identifier` of the project.

## HTTP Method

```text
GET
```

## Supported Parameters

None

## Example cURL Request

```shell
curl -H "Content-type: application/json" \
-H "Accept: application/json" \
--user adam@atechmedia.com:my-api-key \
https://test.deployhq.com/projects/project/integrations
```

## Example Response

```json
[
    {
        "identifier": "a3f1b2c4-5d6e-7f8a-9b0c-1d2e3f4a5b6c",
        "hook_type": "slack",
        "name": "Slack notifications",
        "send_on_start": false,
        "send_on_completion": true,
        "send_on_failure": true,
        "created_at": "2024-01-15T10:30:00.000Z",
        "updated_at": "2024-01-15T10:30:00.000Z"
    },
    {
        "identifier": "b4c2d3e5-6f7a-8b9c-0d1e-2f3a4b5c6d7e",
        "hook_type": "http_post",
        "name": "Deploy webhook",
        "send_on_start": true,
        "send_on_completion": true,
        "send_on_failure": true,
        "created_at": "2024-02-20T14:15:00.000Z",
        "updated_at": "2024-02-20T14:15:00.000Z"
    }
]
```
