Verinode Developer
Structured records
Create jobs and clients directly.
POST /v1/jobs and POST /v1/clients create records without a source document. Fields pass through the same schema validator as every other write; operator_id, id, source, and timestamps are server-owned. Provenance is stamped source: "api". Free (no LLM). Requires write; idempotent.
curl -X POST https://api.verinode.ai/v1/jobs \
-H "Authorization: Bearer $KEY" -H "Idempotency-Key: $(uuidgen)" \
-H "content-type: application/json" \
-d '{ "client_name": "Riverside Restoration", "status": "open",
"peril_token": "water", "rcv_total": "18450.00" }'
→ 201 { "id": "…", "resource": "jobs" }