Skip to main content
GET
/
console
/
v1
/
release_pipeline_triggers
List Pipeline Triggers
curl --request GET \
  --url https://statsigapi.net/console/v1/release_pipeline_triggers \
  --header 'STATSIG-API-KEY: <api-key>'
{
  "data": [
    {
      "id": "trigger_1646560789123",
      "releasePipelineID": "pipeline_123456",
      "status": "IN_PROGRESS",
      "currentPhase": "Phase 1",
      "currentPhaseID": "phase_123456",
      "currentPhaseEndTime": 1646560799123,
      "actions": [
        {
          "type": "STARTED",
          "timeMs": 1646560789123,
          "phaseID": "phase_123456",
          "actorID": "user_123456",
          "actorName": "John Doe"
        }
      ],
      "creatorID": "user_123456",
      "createdTime": 1646560789123,
      "lastModifierID": "user_123456",
      "lastModifierName": "John Doe",
      "gateID": "gate_123456"
    },
    {
      "id": "trigger_1646560789124",
      "releasePipelineID": "pipeline_123456",
      "status": "COMPLETED",
      "currentPhase": "Phase 1",
      "currentPhaseID": "phase_123456",
      "currentPhaseEndTime": 1646560799124,
      "actions": [
        {
          "type": "STARTED",
          "timeMs": 1646560789123,
          "phaseID": "phase_123456",
          "actorID": "user_123456",
          "actorName": "John Doe"
        }
      ],
      "creatorID": "user_123456",
      "createdTime": 1646560789124,
      "lastModifierID": "user_654321",
      "lastModifierName": "Jane Doe",
      "dynamicConfigID": "dynamic_config_123456"
    }
  ],
  "pagination": {
    "itemsPerPage": 10,
    "pageNumber": 1,
    "nextPage": null,
    "previousPage": null,
    "totalItems": 2
  },
  "message": "Pipeline triggers listed correctly."
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Query Parameters

releasePipelineID
string

Filter by Release Pipeline ID

gateID
string

Filter by Gate ID

dynamicConfigID
string

Filter by Dynamic Config ID

status

Filter by Status

Available options:
IN_PROGRESS,
PAUSED,
ABORTED,
COMPLETED
startDate
string

Expected valid date in the form of YYYY-MM-DD

Example:

"2024-01-01"

endDate
string

Expected valid date in the form of YYYY-MM-DD

Example:

"2024-01-01"

limit
integer

Results per page

Required range: 1 <= x <= 100
Example:

10

page
integer

Page number

Example:

1

Response

200 - application/json

List pipeline triggers success

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