Create a new application pipeline

Request

POST https://{hostname}:{port}
    /cli/applicationPipeline/create?{parameters}
Accept: application/json
Table 1. Request parameters
Parameter Type Required Description
application string true Application name or id.
Table 2. Header parameters
Parameter Type Required Description
Accept application/json true
This command takes a JSON request string or file. Use the following template for the request:
{
  "name": "name of the application pipeline",
  "stages": [{
    "blocks": [{
      "environment": "name of the environment for this 
  block",
      "processes": ["process-name"]
    }],
    "name": "name of the stage"
  }]
}

Related CLI command: createApplicationPipeline.