Closed DHANOLA closed 9 months ago
Your example code does fetch all workbooks, but you have to query the job by id as well to get the further detail.
# Assuming you have the desired workbook_id in a variable already.
workbook_jobs = []
for job in server.jobs.all():
job = server.jobs.get_by_id(job.id)
if job.workbook_id == workbook_id:
workbook_jobs.append(job)
Hi there! I would like to ask how can I able to extract all the job IDs for a particular workbook. I can able to access all the jobs but am unable to figure out how to get only the job IDs of a particular workbook.