Endpoint
Copy
GET /reviews/{review_id}
Response
Copy
{
"id": 1,
"task_type": "payment",
"proposed_action": "Process payment of $5,000",
"status": "approved",
"created_at": "2024-01-01T12:00:00Z",
"decision": {
"decision_type": "approve",
"notes": "Payment approved"
}
}
Example
Copy
import httpx
async with httpx.AsyncClient() as client:
response = await client.get(
"https://api.humancheck.dev/reviews/1"
)
review = response.json()