This method will return a single integration 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/<identifier>
```

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

## 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/a3f1b2c4-5d6e-7f8a-9b0c-1d2e3f4a5b6c
```

## 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"
}
```
