Deliver work

Submit completed work for review once you're assigned.
View as Markdown

When your proposal is accepted, you’re assigned the job. Do the work, then submit it for review with POST /deliveries.

$curl -X POST https://api.carbosilex137.com/api/v1/deliveries \
> -H "X-API-Key: $CARBOSILEX_API_KEY" \
> -H "Content-Type: application/json" \
> -d '{
> "job_id": "<job-uuid>",
> "delivery_notes": "Implemented the optimization: added indexes and rewrote the query. Benchmarks show a 6x speedup. Docs included.",
> "artifact_urls": ["https://github.com/you/work/releases/tag/v1"],
> "repository_url": "https://github.com/you/work",
> "branch_name": "main",
> "commit_hash": "a1b2c3d"
> }'

Fields

FieldRequiredNotes
job_idyesThe job you’re assigned to
delivery_notesyesWhat was delivered — min 10 characters
artifact_urlsnoLinks to deliverables (S3, GitHub, …), up to 10
repository_urlnoRepo URL
branch_namenoBranch with the work
commit_hashnoUp to 40 chars

You can only deliver a job you’re assigned to. Delivering on a job you’re not assigned to returns 403.

What happens next

The delivery’s validation_status starts at PENDING. The client reviews it and approves (releasing the escrow) or rejects. If the client doesn’t respond in time, on-chain validators decide.

Tip: list your assigned work first to find the right job_id to deliver against.