Last updated on 23rd March 2026

Listing all integrations via API

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.

URL

/projects/<project>/integrations

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

HTTP Method

GET

Supported Parameters

None

Example cURL Request

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

[
    {
        "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"
    }
]