Pipeline_get

Get pipeline by id.

SecuritybearerAuth
Request
path Parameters
pipelineId
required
string

pipeline id.

Responses
200

Ok

get/pipelines/{pipelineId}
Request samples

pipeline = project.pipelines.get(pipeline_id='pipeline_id')

# 
# Get Pipeline object to use in your code.
# 
# **prerequisites**: You must be an *owner* or *developer* to use this method.
# 
# You must provide at least ONE of the following params: pipeline_name, pipeline_id.
# 
# :param str pipeline_id: pipeline id
# :param str pipeline_name: pipeline name
# :param fetch: optional - fetch entity from platform, default taken from cookie
# :return: Pipeline object
# :rtype: dtlpy.entities.pipeline.Pipeline
# 
# 
Response samples
application/json
{
  • "id": "string",
  • "url": "string",
  • "name": "string",
  • "creator": "string",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "projectId": "string",
  • "orgId": "string",
  • "compositionId": "string",
  • "nodes": [
    ],
  • "connections": [
    ],
  • "description": "string",
  • "preview": "string",
  • "startNodes": [
    ],
  • "status": "Created",
  • "settings": {
    },
  • "variables": [
    ],
  • "resetTimestamp": "2019-08-24T14:15:22Z"
}