Get Pipeline Details

Note: This SDK is currently in deprecation. Migrate to JavaScript SDK now.

You can fetch the details of the Catalyst Pipeline by passing the pipeline ID as a parameter to the getPipelineDetails() method. 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.

The pipelines_service reference used below is already defined in this component instance page.

copy
let pipline_details  = pipelines_service.getPipelineDetails("16965000000019146")

A sample response is shown below:

copy
{
 "status": "success",
 "data": {
 "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-09-08 16:37:33 +0530 IST