jobs.status.write and an Idempotency-Key are required.| Code | State |
|---|---|
| 1 | Draft |
| 2 | New |
| 4 | Rejected |
| 5 | In Progress (active) |
400: invalid state or incomplete job details.409: approval, capacity or idempotency conflict.curl --location --request PATCH 'https://api.cvviz.com/v1/jobs//status' \
--header 'Idempotency-Key: cvviz-integration-operation-001' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"status": 1,
"remarks": "string"
}'{
"data": {
"id": 901,
"status": 5,
"isDraft": false,
"isDeleted": false
}
}