Deployment Pipelines
The Bearer API key of your user more info.
an integer specifying the starting point (beginning with 0) when paging through a list of entities
0the maximum number of results when paging through a list of deployment pipelines
50The deployment pipelines
GET /api/deployment-pipelines HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
The deployment pipelines
[
{
"id": 1,
"name": "text",
"integrationType": "text",
"integrationKey": "text",
"teams": [
{
"id": 1,
"name": "text"
}
],
"createdAt": "2025-11-17T03:54:30.653Z",
"updatedAt": "2025-11-17T03:54:30.653Z",
"params": "null",
"integrationUrl": "text"
}
]The Bearer API key of your user more info.
Dynamic params based on the chosen integration type of the pipeline
nullDeployment pipeline API integration params
nullThe newly created depoyment pipeline
POST /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"
}The newly created depoyment pipeline
{
"id": 1,
"name": "text",
"integrationType": "text",
"integrationKey": "text",
"teams": [
{
"id": 1,
"name": "text"
}
],
"createdAt": "2025-11-17T03:54:30.653Z",
"updatedAt": "2025-11-17T03:54:30.653Z",
"params": "null",
"integrationUrl": "text"
}The Bearer API key of your user more info.
entity ID
The requested deployment pipeline
GET /api/deployment-pipelines/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
The requested deployment pipeline
{
"id": 1,
"name": "text",
"integrationType": "text",
"integrationKey": "text",
"teams": [
{
"id": 1,
"name": "text"
}
],
"createdAt": "2025-11-17T03:54:30.653Z",
"updatedAt": "2025-11-17T03:54:30.653Z",
"params": "null",
"integrationUrl": "text"
}The Bearer API key of your user more info.
entity ID
Dynamic params based on the chosen integration type of the pipeline
nullDeployment pipeline API integration params
nullThe updated deployment pipeline
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"
}The updated deployment pipeline
{
"id": 1,
"name": "text",
"integrationType": "text",
"integrationKey": "text",
"teams": [
{
"id": 1,
"name": "text"
}
],
"createdAt": "2025-11-17T03:54:30.653Z",
"updatedAt": "2025-11-17T03:54:30.653Z",
"params": "null",
"integrationUrl": "text"
}The Bearer API key of your user more info.
entity ID
Empty body delete response
DELETE /api/deployment-pipelines/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
Empty body delete response
No content
Last updated
Was this helpful?