Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Pipeline and Task APIs allow you to :

  • To retrieve information about Task runs

...

  • .

  • To start or stop a specific Task run.

Pipeline and Task APIs

GET /runtime/{org}

Retrieves information about Task runs that match the specified filters.

GET /runtime/{org}/{ruuid}

Retrieves information about the Task run with the specified Runtime ID.

GET /runtime/api-stats/{org}

Retrieves the concurrent and daily metrics of Tasks running at the specified time.

GET /runtime/api-stats/{org}/daily

Retrieves the daily metrics of Tasks running on the specified date.

GET /runtime/api-stats/{org}/concurrent

Retrieves the concurrent metrics of Tasks running concurrently at the specified time.

POST /runtime/start/{org}/{ruuid}

Resumes the Resumable Task with the specified Runtime ID.

POST /runtime/stop/{org}/{ruuid}

Stops the Task run with the specified Runtime ID.

...