import httpx
async with httpx.AsyncClient() as client:
response = await client.post(
"https://api.humancheck.dev/reviews",
headers={
"Authorization": "Bearer your-api-key-here",
"Content-Type": "application/json"
},
json={
"reviewer_id": 1,
"decision_type": "approve",
"notes": "Payment approved"
}
)
decision = response.json()