List Pipelines

GET /api/v1.2/pipelines

Use this API to list the pipelines.

Required Role

The following users can make this API call:

  • Users who belong to the system-user or system-admin group.
  • Users who belong to a group associated with a role that allows submitting a command.
  • Users who belong to a role that allows the Pipelines resource.

See Managing Groups and Managing Roles for more information.

Parameters

Note

Parameters marked in bold below are mandatory. Others are optional and have default values.

Parameter Description
page Page number. Default value is 1.
per_page Number of pipelines to be displayed per page. Default value is 30.

Request API Syntax

curl -i -X GET -H "X-AUTH-TOKEN: $AUTH_TOKEN" -H "Content-Type: application/json" -H "Accept: application/json" \
-d ''{
        "page" : <page-number>
        "per_page" : <number-of-pipelines-per-page>
     }'\
"https://api.qubole.com/api/v1.2/pipelines"

Sample API Request

curl -i -X GET -H "X-AUTH-TOKEN: $AUTH_TOKEN" -H "Content-Type: application/json" -H "Accept: application/json" \
-d '{
        "page" : 3
        "per_page" : 10
     }'\
"https://api.qubole.com/api/v1.2/pipelines"