Authorizations
Headers
Query Parameters
Available options:
IN_PROGRESS, PAUSED, ABORTED, COMPLETED Example:
Example:
Required range:
1 <= x <= 100Example:
Example:
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."
}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."
}IN_PROGRESS, PAUSED, ABORTED, COMPLETED 1 <= x <= 100Was this page helpful?