API Reference
Get all jobs for the app
Python
from autoblocks.api.app_client import AutoblocksAppClient client = AutoblocksAppClient( api_key="<YOUR_API_KEY>", app_slug="my-app", ) jobs = client.human_review.list_jobs()
{ "jobs": [ { "id": "cm83i1gtw00000cle3nf0gmtw", "name": "Review for accuracy", "reviewer": { "email": "john@example.com" } } ] }
API Key created in the Autoblocks Webapp
The jobs were returned successfully
The response is of type object.
object