post https://app.diffgram.com/api/v1/job//builder/info
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()