Skip to content

Get a Pipeline Stage
Stable

Request

Retrieves the details of a single Pipeline Stage by ID.

Returns the full Stage object for the specified pipeline and stage; use this to inspect a specific step's configuration within a pipeline's execution order.

About Stages

A Stage is one ordered step within a Pipeline, holding the Target Lists (devices and/or Device Groups) and Operation Lists (actions) that run when the pipeline is executed.

Security
pipelines_SCAPIAuthToken
Path
pipeline_idstringrequired

ID of the Pipeline

stage_idstringrequired

ID of the Stage

cURL
curl -i -X GET \
  'https://api.esper.io/_mock/openapi/pipelines/v0/pipelines/{pipeline_id}/stages/{stage_id}/' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Pipelines stage get response

Bodyapplication/json
codeinteger
messagestring
contentobject(pipelines_Stage)
Response
{ "code": 0, "message": "string", "content": { "id": "string", "enterprise_id": "string", "pipeline_id": "string", "description": "string", "name": "string", "timeout_seconds": 0, "created_by": 0, "updated_by": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" } }