POST /api/Applicant/CreateExperience

POST /api/Applicant/CreateExperience

Body

Responses

curl \
 -X POST http://api.example.com/api/Applicant/CreateExperience \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/json-patch+json"
curl \
 -X POST http://api.example.com/api/Applicant/CreateExperience \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/json" \
 -d '{"title":"string","company":"string","location":"string","startDate":"2024-05-04T09:42:00+00:00","endDate":"2024-05-04T09:42:00+00:00","description":"string","isCurrent":true,"applicantId":42}'
curl \
 -X POST http://api.example.com/api/Applicant/CreateExperience \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: text/json"
curl \
 -X POST http://api.example.com/api/Applicant/CreateExperience \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/*+json"
Request examples
{
  "title": "string",
  "company": "string",
  "location": "string",
  "startDate": "2025-05-04T09:42:00Z",
  "endDate": "2025-05-04T09:42:00Z",
  "description": "string",
  "isCurrent": true,
  "applicantId": 42
}
Request examples
{
  "title": "string",
  "company": "string",
  "location": "string",
  "startDate": "2025-05-04T09:42:00Z",
  "endDate": "2025-05-04T09:42:00Z",
  "description": "string",
  "isCurrent": true,
  "applicantId": 42
}