v1

latestOpenAPI 3.0.3Apache 2.02026-07-17302459.9 KB
Data Jobs Execution

Trigger Data Job Execution.

<i>(Introduced in v1.0)</i> | Trigger new execution of a Data Job. If Data Job deployment is currently being executed it will return an error (409 Conflict). Only deployed Data Jobs can be executed. Currently the Data Job arguments ('args') are ignored. Note: in the future it will be possible to trigger different deployments.

post/data-jobs/for-team/{team_name}/jobs/{job_name}/deployments/{deployment_id}/executions

Request body

started_bystring

User or service that started the execution (e.g manual/auserov@example.mail.com or scheduled/runtime)

argsobject

Data Job arguments

Example request

{
  "started_by": "schedule/runtime",
  "args": {
    "key": "value"
  }
}

Response

Execution triggered successfully.