Skip to main content

UnifiedViews Method - Request One Pipeline

Abstract

UnifiedViews Method - Request One Pipeline

Description

Request the information about the specified pipeline.

URL: http://{server}/master/api/1/pipelines/{id}

Content Type

application/json

Request

Supported Method

GET

HTTP Parameters

Parameter

Type

Required

Description

id

number

true

ID of the pipeline to return information about.

asUser

string

true

User with permission to view and edit this pipeline.

name

string

true

Name of your choice for the pipeline you want to create.

description

string

false

A description for the pipeline details.

Example Request
http://admin:commander@localhost:8080/master/api/1/pipelines/33?asUser=admin
ResponseContent-Type

application/json

Status: 200 - OK

Response Attributes

Attribute

Type

Required

Description

id

number

true

ID of the pipeline.

name

string

true

Name of your choice for the pipeline you want to create.

description

string

false

A description for the pipeline details.

Example Response
{ 
  id: 1,
  name: "The pipeline",
  description: "The description"
}