get
https://api.liveramp.com/analytics-environment/v1/dataproc-job-histories
Get Dataproc Jobs
Request example
curl --location 'https://api.liveramp.com/analytics-environment/v1/dataproc-job-histories?scheduleJobId=338&limit=10&after=0' \
--header 'Tenant-ID: ${tenantId}' \
--header 'Authorization: Bearer ${access_token}'Response example
Response example
{
"dataprocJobHistories": [
{
"id": 91823,
"tenantId": 123456,
"dataprocJobId": 123123123123,
"startTime": "2023-12-18T12:10:15",
"elapsedTime": 607000,
"status": "SUCCEEDED"
}
],
"_pagination": {
"after": {
"present": true
},
"total": 6
}
}