Skip to content

Create an Operation list for the Stage
Stable

Request

Security
pipelines_SCAPIAuthToken
Path
stage_idstringrequired

ID of the Stage

Bodyapplication/jsonrequired
namestringrequired
descriptionstring
pipeline_idstring, (uuid)
cURL
curl -i -X POST \
  'https://api.esper.io/_mock/openapi/pipelines/v0/stages/{stage_id}/operationlists/' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "string",
    "description": "string",
    "pipeline_id": "ec036e81-7903-4e4d-bbfa-ac8516341cf0"
  }'

Responses

Attach Operation list to a Stage

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