PUT/v1/HitlTask/{id}

Update Hitl Task

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Path parameters

idstringrequired

Request body application/json

idstringnullable
created_atstring (date-time)
updated_atstring (date-time)
created_at_isostringnullable
updated_at_isostringnullable
system_typestringnullable
systemstringnullable
system_idstringnullable
system_record_idstringnullable
system_record_typestringnullable
tenant_idstringnullable
assigned_to_idstringnullable
statusstringrequiredmin length 1
citizen_emailstringrequiredmin length 1pattern ^[\w!#$%&'*+\-\/=?^`{|}~]+(\.{0,2}[\w!#$%&'*+\-\/=?^`{|}~]+)*\@([a-zA-Z0-9\-_]+\.?)*([a-zA-Z0-9\-_]{1,}\.[a-zA-Z0-9\-_]{1,})$
template_idstringrequiredmin length 1
notesstringnullable
workflow_instance_idstringnullable
historystringnullable
sourcestringnullable
last_email_sentstringnullable
tokenstringnullable

Responses

object HitlTask — same shape as the request body.

curl --request PUT \
  --url 'https://api.4comply.io/v1/HitlTask/00000000-0000-0000-0000-000000000000' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "00000000-0000-0000-0000-000000000000",
  "created_at": "2026-09-07T12:00:00Z",
  "updated_at": "2026-09-07T12:00:00Z",
  "created_at_iso": "2026-09-07T12:00:00Z",
  "updated_at_iso": "2026-09-07T12:00:00Z",
  "system_type": "string",
  "system": "string",
  "system_id": "00000000-0000-0000-0000-000000000000",
  "system_record_id": "00000000-0000-0000-0000-000000000000",
  "system_record_type": "string",
  "tenant_id": "your-tenant-id",
  "assigned_to_id": "00000000-0000-0000-0000-000000000000",
  "status": "active",
  "citizen_email": "user@example.com",
  "template_id": "00000000-0000-0000-0000-000000000000",
  "notes": "Example text",
  "workflow_instance_id": "00000000-0000-0000-0000-000000000000",
  "history": "string",
  "source": "string",
  "last_email_sent": "user@example.com",
  "token": "REDACTED"
}'