API Reference / Git - Deployments
List deployments
get
https://api.intelig.ai/api/v1/intelig/deployments
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getDeployments
Get paginated list of deployments with optional filters. Supports filtering by environment, status, repository, and date range. Results are ordered by deployment date descending.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/deployments?request=string" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
request | DeploymentListRequestDto | yes | — |
Response 200
application/json · ApiResponseDeploymentListResponseDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | DeploymentListResponseDto | Paginated list of deployment summaries |
Status codes
200— Paginated deployment list returned successfully400— Invalid request parameters401— Unauthorized - invalid or missing JWT token429— —
Every response is wrapped in { success, message, data }. A 4xx means the request
is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.