Execute Job

post

[host-url]/dt-rest/v2/jobs/submit

Handles the execution of a job based on the provided parameters.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
JSON containing a job submission payload indicating action to perform on a job.
Show Source
Example:
{
    "action":"RUN",
    "objectType":"DATAFLOW",
    "objectId":"objectId_example",
    "objectName":"objectName_example",
    "isSynchronous":true,
    "ignorePreviousRunningJob":true,
    "jobName":"jobName_example",
    "jobVariables":{
    }
}
Nested Schema : jobVariables
Type: object
Additional Properties Allowed
Show Source
Back to Top

Response

Supported Media Types

200 Response

A response indicating the outcome of the job execution.
Body ()
Root Schema : RuntimeJobDTO
Match All
JSON that represents a job during runtime with additional job metadata, such as execution statistics, record statistics, and job variables.
Show Source
Nested Schema : RuntimeJobBaseDTO
Type: object
Represents a job during runtime.
Show Source
  • Allowed Values: [ "WAITING", "ERROR", "RUNNING", "DONE", "WARNING", "QUEUED", "NOT_STARTED", "PREPARING", "VALID", "INVALID" ]
    Enumerates the possible statuses of a job.
    • Waiting: The Job is waiting to be executed.
    • Error: The Job terminated due to an error.
    • Running: The Job is being executed.
    • Done: The Job executed successfully.
    • Warning: The Job completed successfully but errors have been detected during the data quality check.
    • Queued: The Job is waiting for an agent to be available for its execution.
    • Not started: The Job has not started.
    • Preparing: The Job is preparing to be executed.
    • Valid: The Job is valid to be executed.
    • Invalid: The Job is not valid to be executed.
Nested Schema : RuntimeJobDTO-allOf[1]
Type: object
JSON that represents a job during runtime with additional job metadata, such as execution statistics, record statistics, and job variables.
Show Source
Nested Schema : executionStatistics
Type: object
Complex object: ExecutionStatisticsDTO
Nested Schema : jobVariables
Type: object
Additional Properties Allowed
Show Source
Nested Schema : recordStatistics
Type: object
Complex object: RecordStatisticsDTO

500 Response

Internal Server Error
Back to Top