GET
/
apps
/
{appSlug}
/
human-review
/
jobs
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"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key created in the Autoblocks Webapp

Path Parameters

appSlug
string
required

Response

200 - application/json

The jobs were returned successfully

The response is of type object.