Skip to main content
PUT
/
api
/
Candidates
/
{candidateId}
/
WorkHistory
/
{workHistoryId}
Update a Candidate Work History Entry.
curl --request PUT \
  --url https://api.example.com/api/Candidates/{candidateId}/WorkHistory/{workHistoryId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": 123,
  "sourceID": 1,
  "sourceName": "<string>",
  "jobTypeID": 123,
  "jobTypeName": "<string>",
  "title": "<string>",
  "organizationName": "<string>",
  "description": "<string>",
  "startDate": "2023-11-07T05:31:56Z",
  "endDate": "2023-11-07T05:31:56Z",
  "isDeleted": true,
  "deletedDate": "2023-11-07T05:31:56Z",
  "deletedBy": 123,
  "createdDate": "2023-11-07T05:31:56Z"
}
'

Path Parameters

candidateId
integer<int32>
required
workHistoryId
integer<int32>
required

Body

application/json
id
integer<int32>
sourceID
enum<integer>
Available options:
1,
2,
3,
4,
5,
6
sourceName
string | null
jobTypeID
integer<int32>
jobTypeName
string | null
title
string | null
organizationName
string | null
description
string | null
startDate
string<date-time> | null
endDate
string<date-time> | null
isDeleted
boolean
deletedDate
string<date-time> | null
deletedBy
integer<int32> | null
createdDate
string<date-time>

Response

200

OK