Skip to main content

UnifiedViews Method - Request All Pipelines

Abstract

UnifiedViews Method - Request All Pipelines

Description

Returns list of all pipelines for the given user (user is owner of those pipelines).

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

Content Type

application/json

Request

Supported Method

GET

HTTP Parameter

Parameter

Type

Required

Description

asUser

string

false

Username of the user who owns the pipelines to be requested.

Example Request
curl http://master:commander@localhost:8080/master/api/1/pipelines?
Example Request including Owner's Name
curl http://master:commander@localhost:8080/master/api/1/pipelines?asUser=user
ResponseContent-Type

application/json

Status: 200 - OK

Response Attributes

Attributes

Type

Required

Description

id

Object

true

ID object of the pipeline

localName

string

true

ID of the pipeline

namespace

string

true

Resource path of the pipeline

name

string

true

Name of the pipeline

username

string

true

User who is marked as pipeline author.

userActorExternalId

'null' or string

false

User who has permission to view the pipeline.

Example Response
[
    {
        "id": {
            "localName": "87b3b364-2594-40a1-b49d-d4d1149f567c",
            "namespace": "http://unifiedviews.poolparty.biz/resource/pipeline/"
        },
        "name": "AD-4 v.2",
        "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pulvinar turpis id vulputate congue. Donec eleifend nunc et sagittis porta. Praesent odio sem, dapibus tempus dui et, tempus condimentum tortor. Integer non hendrerit leo.   \n",
        "username": "admin",
        "userActorExternalId": null
    },
    {
        "id": {
            "localName": "873cddae-51d1-4f20-8428-e1200d7c4f88",
            "namespace": "http://unifiedviews.poolparty.biz/resource/pipeline/"
        },
        "name": "AD-4 v.3",
        "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pulvinar turpis id vulputate congue. Donec eleifend nunc et sagittis porta. Praesent odio sem, dapibus tempus dui et, tempus condimentum tortor. Integer non hendrerit leo.  \n",
        "username": "admin",
        "userActorExternalId": null
    },
    {
        "id": {
            "localName": "a0b681d6-8408-4ac2-ba5b-6e3e6caf1ed2",
            "namespace": "http://unifiedviews.poolparty.biz/resource/pipeline/"
        },
        "name": "AD-4",
        "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pulvinar turpis id vulputate congue. Donec eleifend nunc et sagittis porta. Praesent odio sem, dapibus tempus dui et, tempus condimentum tortor. Integer non hendrerit leo.  \n",
        "username": "admin",
        "userActorExternalId": null
    }
]