Skip to main content
POST
/
v1
/
projects
/
{project}
/
rollouts
/
{rollout}
/
stages
/
{stage}
/
tasks:batchRun
cURL
curl --request POST \
  --url https://api.example.com/v1/projects/{project}/rollouts/{rollout}/stages/{stage}/tasks:batchRun \
  --header 'Content-Type: application/json' \
  --data '
{
  "parent": "<string>",
  "tasks": [
    "<string>"
  ],
  "reason": "<string>",
  "runTime": "2023-11-07T05:31:56Z"
}
'
{}

Path Parameters

project
string
required

The project id.

rollout
string
required

The rollout id.

stage
string
required

The stage id.

Body

application/json
parent
string

The name of the parent of the tasks. Format: projects/{project}/rollouts/{rollout}/stages/{stage}

tasks
string[]

The tasks to run. Format: projects/{project}/rollouts/{rollout}/stages/{stage}/tasks/{task}

reason
string

The reason for running the tasks.

runTime
string<date-time>

The task run should run after run_time.

Response

OK

The response is of type object.