For general information about a job.

📘

Permissions

Cascades from the project the job is in.
roles: ["admin", "Editor", "Viewer"]
apis: ["api_enabled_builder"]

SDK

refreshes existing job object

job.refresh_info()

Example of using it for job status

import time

while job.status != "complete":

	time.sleep(3)

	job.refresh_info()
  
	print(job.status)
  
  # or for more info: 
  # print(job.__repr__)
  
 
results = job.export_results()
Language
Authorization
Basic
base64
:
Click Try It! to start a request and see the response here!