Skip to main content
GET
/
console
/
v1
/
release_pipelines
List Pipelines
curl --request GET \
  --url https://statsigapi.net/console/v1/release_pipelines \
  --header 'STATSIG-API-KEY: <api-key>'
{
  "message": "List pipelines success",
  "data": [
    {
      "id": "45aiIXz4aaAadWtYEetjko",
      "name": "Pipeline 1",
      "creatorID": "24hiIXz3kbFaDwtYEetv2i",
      "createdTime": 1705439406615,
      "lastModifierID": "24hiIXz3kbFaDwtYEetv2i",
      "phases": [
        {
          "id": "24hiIXz3kbFaDwtYEetv2i",
          "name": "Phase 1",
          "timeIntervalMs": 3600000,
          "requiredReview": false,
          "rules": [
            {
              "id": "24hiIXz3kbFaDwtYEetv2i",
              "name": "Rule",
              "conditions": [
                {
                  "type": "app_version",
                  "targetValue": [
                    "1",
                    "222"
                  ],
                  "operator": "any"
                }
              ],
              "environments": null
            }
          ]
        }
      ]
    },
    {
      "id": "24hiIXz3kbFaDwtYEetv2i",
      "name": "Pipeline 2",
      "creatorID": "24hiIXz3kbFaDwtYEetv2i",
      "createdTime": 1705439406615,
      "lastModifierID": "24hiIXz3kbFaDwtYEetv2i",
      "phases": [
        {
          "id": "24hiIXz3kbFaDwtYEetv2i",
          "name": "Phase 1",
          "timeIntervalMs": 3600000,
          "requiredReview": false,
          "rules": [
            {
              "id": "24hiIXz3kbFaDwtYEetv2i",
              "name": "Rule",
              "conditions": [
                {
                  "type": "app_version",
                  "targetValue": [
                    "1",
                    "222"
                  ],
                  "operator": "any"
                }
              ],
              "environments": null
            }
          ]
        }
      ]
    }
  ]
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Query Parameters

limit
integer

Results per page

Example:

10

page
integer

Page number

Example:

1

Response

200 - application/json

List pipelines

message
string
required

A simple string explaining the result of the operation.

data
object[]
required

Array of results returned by pagination limit.

pagination
object
required

Pagination metadata for checking if there is next page for example.

I