Job Behavior
- Jobs represent the output of long-running operations, such as HITL reviews.
- Jobs are read-only; you cannot delete them. You can list all jobs or fetch the details of a specific job.
Client Setup
Python
Upload, manage, and download files with the Spitch API
from spitch import Spitch
client = Spitch()
jobs = client.jobs.list()
for job in jobs.items:
print(job.status)
Was this page helpful?