statuses.canSet: codes accepted by the status-update endpoint.initialStatus is account_workflow: normal creation becomes active or pending approval according to the account configuration.POST /jobs does not accept a lifecycle status.canSet describes supported input, not whether a particular job passes approval and capacity checks.5 means active (In Progress). Approval and publication are separate.H hourly, D daily, W weekly, M monthly, Y yearly.organization.readcurl --location 'https://api.cvviz.com/v1/job-options' \
--header 'Authorization: Bearer <token>'{
"data": {
"jobTypes": [
"Full Time"
],
"educationLevels": [
"Bachelor"
],
"salaryIntervals": [
"H",
"D",
"W",
"M",
"Y"
],
"experienceUnit": "years",
"initialStatus": "draft",
"statuses": [
{
"code": 1,
"label": "Draft",
"canCreate": true,
"canSet": true
},
{
"code": 2,
"label": "New",
"canCreate": false,
"canSet": true
},
{
"code": 3,
"label": "Pending Approval",
"canCreate": false,
"canSet": false
},
{
"code": 4,
"label": "Rejected",
"canCreate": false,
"canSet": true
},
{
"code": 5,
"label": "In Progress",
"canCreate": true,
"canSet": true
},
{
"code": 6,
"label": "On Hold",
"canCreate": false,
"canSet": false
},
{
"code": 7,
"label": "Paused",
"canCreate": false,
"canSet": false
},
{
"code": 8,
"label": "Filled",
"canCreate": false,
"canSet": false
},
{
"code": 9,
"label": "Cancelled",
"canCreate": false,
"canSet": false
},
{
"code": 10,
"label": "Closed",
"canCreate": false,
"canSet": false
},
{
"code": 11,
"label": "Archived",
"canCreate": false,
"canSet": false
}
]
}
}