Skip to main content
POST
/
user-profile
/
applicants
/
{applicantId}
/
work-experiences
Add work experience
curl --request POST \
  --url https://sgja-api.vohoangphuc.com/user-profile/applicants/{applicantId}/work-experiences \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "companyName": "<string>",
  "position": "<string>",
  "startDate": "2023-12-25",
  "description": "<string>",
  "endDate": "2023-12-25",
  "isCurrent": true
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "companyName": "<string>",
  "position": "<string>",
  "description": "<string>",
  "startDate": "2023-12-25",
  "endDate": "2023-12-25",
  "isCurrent": true
}

Authorizations

Authorization
string
header
required

JWT access token

Path Parameters

applicantId
string<uuid>
required

Body

application/json
companyName
string
required
position
string
required
startDate
string<date>
required
description
string
endDate
string<date>
isCurrent
boolean

Response

Work experience created

id
string<uuid>
companyName
string
position
string
description
string
startDate
string<date>
endDate
string<date>
isCurrent
boolean