View an integration via API
This method will return a single integration configured for your project.
Tip: You can explore and test this endpoint interactively using our OpenAPI documentation.
URL
/projects/<project>/integrations/<identifier>
- Replace
<project>with either thepermalinkoridentifierof the project. - Replace
<identifier>with theidentifierof the integration.
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/a3f1b2c4-5d6e-7f8a-9b0c-1d2e3f4a5b6c
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"
}