Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"title": "string",
"description": "string",
"requirements": "string",
"closingDate": "string",
"status": "OPEN"
}
Request samples
curl --location --request PATCH '/api/v1/jobs/' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "string",
"description": "string",
"requirements": "string",
"closingDate": "string",
"status": "OPEN"
}'
Responses
application/json {
"success": false,
"message": "",
"data": {
"jobID": "",
"title": "",
"description": "",
"requirements": "",
"status": "",
"createdAt": "",
"updatedAt": "",
"hrCreator": {
"userID": "",
"fullName": "",
"email": "",
"role": ""
}
},
"timestamp": "",
"code": 0
}
Modified atΒ 2025-06-28 21:46:41