Skip to main content
POST
/
v1
/
api
/
candidates
/
profile
/
cvs
Ajouter un CV
curl --request POST \
  --url http://localhost:3091/v1/api/candidates/profile/cvs \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "fileUrl": "<string>",
  "fileSize": "<string>",
  "default": true
}
'
{
  "success": true,
  "message": "<string>",
  "data": {
    "id": 123,
    "name": "<string>",
    "fileUrl": "<string>",
    "fileSize": "<string>",
    "uploadedAt": "2023-11-07T05:31:56Z",
    "createdAt": "2023-11-07T05:31:56Z",
    "default": true,
    "isDefault": true
  },
  "error": {
    "code": "<string>",
    "message": "<string>",
    "details": "<string>"
  },
  "timestamp": "2023-11-07T05:31:56Z"
}

Body

application/json
name
string
required
Maximum string length: 255
fileUrl
string
required
Maximum string length: 500
fileSize
string
Maximum string length: 50
default
boolean

Response

200 - */*

OK

success
boolean
message
string
data
object
error
object
timestamp
string<date-time>