Get Details of a PipelineAdmin Scope
Note: Ensure you have installed the required package to use this SDK method.
You can fetch the details of a Pipeline by passing the pipeline ID to the getPipelineDetails() SDK method.
The pipelines reference used in the code snippets below is the component instance created to perform these operations.
copy
// get the pipeline details
const pipeline_details = pipelines.getPipelineDetails("16965000000019146");
Example of Expected Reponse
The name of the pipeline, details of the Catalyst project in which the pipeline has been created, the details of the user who created the pipeline, the time of creation, and if modifications have been done, the details of the user who modified the pipeline, the modified time, the status of the pipeline, and other details like runner specifications are returned as response to this method.
copy
{
"pipeline_id": "16965000000019146",
"name": "test1",
"project_details": {
"project_name": "Project-Rainfall",
"id": "5000000000072",
"project_type": "Live"
},
"created_by": {
"zuid": "20257791",
"is_confirmed": false,
"email_id": "amelia.burrows@zylker.com",
"first_name": "Amelia",
"last_name": "Burrows",
"user_type": "Admin",
"user_id": "5000000000056"
},
"created_time": "Mar 19, 2024 11:28 AM",
"modified_by": {
"zuid": "20257791",
"is_confirmed": false,
"email_id": "amelia.burrows@zylker.com",
"first_name": "Amelia",
"last_name": "Burrows",
"user_type": "Admin",
"user_id": "5000000000056"
},
"modified_time": "Mar 19, 2024 11:28 AM",
"git_account_id": "",
"mask_regex": [null],
"pipeline_status": "Active",
"config_id": 2,
"integ_id": 1
}
Last Updated 2026-07-02 14:51:41 +0530 IST
Yes
No
Send your feedback to us
Skip
Submit