Execute Pipeline

You can initiate a Catalyst pipeline run by passing the pipeline ID and the branch name as parameters to the runPipeline() method. You can also pass environment variables required for the pipeline execution in a JSON object to this method, and it is completely optional. This method returns the execution history details of the pipeline as the response.

copy
JSONObject env = new JSONObject();
env.put("EVENT", "push");
env.put("URL", "https://www.google.com");
ZCPipelineRunHistory run = pipelines_service.runPipeline(8431000000161112051L,main,env);

A sample response is shown below:

copy
{
 "status": "success",
 "data": {
 "history_id": "5000000021007",
 "pipeline_id": "8431000000161112051L",
 "event_time": "Mar 20, 2024 02:02 PM",
 "event_details": {
 "BRANCH_NAME": "detective_pre",
 "EVENT": "push",
 "URL": "https://www.google.com"
 },
 "history_status": "Queued"
 }
}

Last Updated 2025-06-20 16:21:48 +0530 IST

ON THIS PAGE

RELATED LINKS

Node.js SDK Python SDK