Skip to main content

UnifiedViews Method - Request All Visible Pipelines

Abstract

UnifiedViews Method - Request All Visible Pipelines

Description

This call returns a list of all pipelines visible for the user specified.

URL: http://{server}/master/api/1/pipelines/visible?asUser=admin

Note

Visible pipelines of a user are those he is owner of as well as the public pipelines of others.

Content Type

application/json

Request

Supported Method

GET

HTTP Parameters

Parameter

Type

Required

Description

asUser

string

true

User who is marked as pipeline author.

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
    }
]