Get the lastest run for a data flow
/api/20210901/catalog/dataflows/{dataflowId}/history/latest
Request
-
dataflowId(required): string(byte)
The object ID of the data flow with Base64 encoding. For example, if your data flow has the object ID 'User1'.'dataflow1', enter the Base64 encoded value, J1VzZXIxJy4nZGF0YWZsb3cxJw==.
-
includeTasks: boolean(byte)
possible values:\ true or false. Default value is true. If true, all task histories will be included in job histories. If false, only job histories will be returned.
There's no request body for this operation.
Back to TopResponse
- application/json
200 Response
object-
jobEndTimestamp: string
time when job finishes running
-
jobExecutionTimestamp": string
time when job starts running
-
jobIdentifier: string
job run identifier
-
jobName: string
job run name
-
jobNumberOfTasks: number
number of tasks in this job
-
jobOriginOfRequest: string
source where job is requested from Manual, or Schedule
-
jobQueuedDuration: string
time the job stayed in queue
-
jobRunDuration: string
time takes for job to run
-
jobRunType: string
type of job
-
jobStartTimestamp: string
time when job is requested
-
jobStatus: string
status of job
-
jobTasks:
jobTasks
object-
taskAverageReadThroughput: number
average read throughput for task
-
taskDataSizeInBytes: number
total data processed by task in bytes
-
taskEndTimestamp: string
task end time
-
taskName: string
task run name
-
taskNumberOfSuccessfulRows: number
number of successful rows processed in this task
-
taskRunDuration: string
time takes for task to run
-
taskSourceName: string
source connection name
-
taskStartTimestamp": string
task start time
-
taskStatus: string
status of task
-
taskTargetName: string
target connection name
403 Response
object-
code(required): string
Short error code that defines the error, meant for programmatic parsing.
-
message(required): string
Human-readable error string.
404 Response
object-
code(required): string
Short error code that defines the error, meant for programmatic parsing.
-
message(required): string
Human-readable error string.
500 Response
object-
code(required): string
Short error code that defines the error, meant for programmatic parsing.
-
message(required): string
Human-readable error string.
Examples
In this example, you return the
detailed history of the most recent job run for a given dataflowID. The object ID of
the data flow is 'john.smith@mycompany.com'.'MySalesDataFlow: Enrich MySales Report'
which has the Base64URL-safe encoded dataflowID value:
J2pvaG4uc21pdGhAbXljb21wYW55LmNvbScuJ015U2FsZXNEYXRhRmxvdzogRW5yaWNoIE15U2FsZXMgUmVwb3J0Jw.
cURL Example:
curl -i \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--request GET 'https://<hostname>/api/20210901/catalog/dataflows/J2pvaG4uc21pdGhAbXljb21wYW55LmNvbScuJ015U2FsZXNEYXRhRmxvdzogRW5yaWNoIE15U2FsZXMgUmVwb3J0Jw/history/latest' \
This example returns both job and task history for the latest run.
Example of Request Body
Not applicable.
Example of Response Body
[
{
"jobName":"'john.smith@mycompany.com'.'MySalesDataFlow: Enrich MySales Report'",
"jobIdentifier":"1234ABCD5678EFGH9012IJKL3456MNOP",
"jobStartTimestamp":"2024-05-14T18:30:50.0+0000",
"jobExecutionStartTimestamp":"2024-05-14T18:31:07.0+0000",
"jobEndTimestamp":"2024-05-14T18:31:25.0+0000",
"jobStatus":"SUCCEEDED",
"jobRunType":"DATAFLOW",
"jobQueuedDuration":"PT35S",
"jobRunDuration":"PT18S",
"jobOriginOfRequest":"Manual",
"jobNumberOfTasks":"1",
"jobTasks":
[{"taskName":"DFLW : MySalesDataFlow: Enrich MySales Report",
"taskStartTimestamp":"2024-05-14T18:31:10.0+0000",
"taskEndTimestamp":"2024-05-14T18:31:25.0+0000",
"taskStatus":"SUCCEEDED",
"taskDuration":"PT15S"}]
}
]
cURL Example with Parameters:
If you want to exclude task history, apply the query parameter
includeTasks=false.
curl -i \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--request GET 'https://<hostname>/api/20210901/catalog/dataflows/J2pvaG4uc21pdGhAbXljb21wYW55LmNvbScuJ015U2FsZXNEYXRhRmxvdzogRW5yaWNoIE15U2FsZXMgUmVwb3J0Jw/history/latest?includeTasks=false'