Deployment Pipelines
Authorizations
Query parameters
start-indexinteger · int32OptionalDefault:
an integer specifying the starting point (beginning with 0) when paging through a list of entities
0max-resultsinteger · int32 · max: 100OptionalDefault:
the maximum number of results when paging through a list of deployment pipelines
50Responses
200
The deployment pipelines
application/json
get
/deployment-pipelinesGET /api/deployment-pipelines HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
200
The deployment pipelines
[
{
"id": 1,
"name": "text",
"integrationType": "text",
"integrationKey": "text",
"teams": [
{
"id": 1,
"name": "text"
}
],
"createdAt": "2025-10-27T08:18:54.849Z",
"updatedAt": "2025-10-27T08:18:54.849Z",
"params": "null",
"integrationUrl": "text"
}
]Authorizations
Body
idinteger · int64Optional
namestringRequired
integrationTypestringRequired
integrationKeystringOptional
createdAtstring · date-timeRead-onlyOptional
updatedAtstring · date-timeRead-onlyOptional
paramsone ofOptionalDefault:
Dynamic params based on the chosen integration type of the pipeline
nullobjectOptionalDefault:
Deployment pipeline API integration params
nullintegrationUrlstringOptional
Responses
200
The newly created depoyment pipeline
application/json
post
/deployment-pipelinesPOST /api/deployment-pipelines HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 144
{
"id": 1,
"name": "text",
"integrationType": "text",
"integrationKey": "text",
"teams": [
{
"id": 1,
"name": "text"
}
],
"params": "null",
"integrationUrl": "text"
}200
The newly created depoyment pipeline
{
"id": 1,
"name": "text",
"integrationType": "text",
"integrationKey": "text",
"teams": [
{
"id": 1,
"name": "text"
}
],
"createdAt": "2025-10-27T08:18:54.849Z",
"updatedAt": "2025-10-27T08:18:54.849Z",
"params": "null",
"integrationUrl": "text"
}Authorizations
Path parameters
idnumberRequired
entity ID
Responses
200
The requested deployment pipeline
application/json
get
/deployment-pipelines/{id}GET /api/deployment-pipelines/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
200
The requested deployment pipeline
{
"id": 1,
"name": "text",
"integrationType": "text",
"integrationKey": "text",
"teams": [
{
"id": 1,
"name": "text"
}
],
"createdAt": "2025-10-27T08:18:54.849Z",
"updatedAt": "2025-10-27T08:18:54.849Z",
"params": "null",
"integrationUrl": "text"
}Authorizations
Path parameters
idnumberRequired
entity ID
Body
idinteger · int64Optional
namestringRequired
integrationTypestringRequired
integrationKeystringOptional
createdAtstring · date-timeRead-onlyOptional
updatedAtstring · date-timeRead-onlyOptional
paramsone ofOptionalDefault:
Dynamic params based on the chosen integration type of the pipeline
nullobjectOptionalDefault:
Deployment pipeline API integration params
nullintegrationUrlstringOptional
Responses
200
The updated deployment pipeline
application/json
put
/deployment-pipelines/{id}PUT /api/deployment-pipelines/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 144
{
"id": 1,
"name": "text",
"integrationType": "text",
"integrationKey": "text",
"teams": [
{
"id": 1,
"name": "text"
}
],
"params": "null",
"integrationUrl": "text"
}200
The updated deployment pipeline
{
"id": 1,
"name": "text",
"integrationType": "text",
"integrationKey": "text",
"teams": [
{
"id": 1,
"name": "text"
}
],
"createdAt": "2025-10-27T08:18:54.849Z",
"updatedAt": "2025-10-27T08:18:54.849Z",
"params": "null",
"integrationUrl": "text"
}Last updated
Was this helpful?