This endpoint allows you to get the status of a Bulk Job.
Code Example
cURL
curl -XGET https://api.intricately.com/api/v2/bulk_jobs/<job_id>
-H "X-API-KEY: <YOUR_API_KEY>"
{
"status": "completed",
"job_id": "<JOB_ID>",
"created_at": "2018-03-20T11:07:20-04:00"
}
Python
headers = { 'X-API-KEY': <YOUR_API_KEY> }
r = requests.get("https://api.intricately.com/api/v2/bulk_jobs/<job_id>", headers=headers)
json_response = r.json()
{
"status": "completed",
"job_id": "<JOB_ID>",
"created_at": "2018-03-20T11:07:20-04:00"
}
Ruby
headers = { "X-API-KEY" => <YOUR_API_KEY>, content_type: :json, accept: :json }
RestClient.get "https://api.intricately.com/api/v2/bulk_jobs/<job_id>", headers
{
"status": "completed",
"job_id": "<JOB_ID>",
"created_at": "2018-03-20T11:07:20-04:00"
}
Comments
0 comments
Article is closed for comments.