PUT api/Candidates/{CandidateNo}/CandidateWorkExperience

Used to update candidate Work Experience

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CandidateNo

string

Required

Body Parameters

CandidateWorkExperienceUpdate
NameDescriptionTypeAdditional information
CurrentJobTitle

This is the Candidate's current job title

string

None.

CurrentNoticePeriod

This is the Candidate's current notice period

string

None.

RegisteredWithAgency

This is true if the Candidate is registered with a job active agency

boolean

None.

AgencyName

This is the Candidate's agency name

string

None.

JobSeekerID

This is the Candidate's job seeker ID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CurrentJobTitle": "sample string 1",
  "CurrentNoticePeriod": "sample string 2",
  "RegisteredWithAgency": true,
  "AgencyName": "sample string 4",
  "JobSeekerID": "sample string 5"
}

text/xml

Sample:
<CandidateWorkExperienceUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO">
  <AgencyName>sample string 4</AgencyName>
  <CurrentJobTitle>sample string 1</CurrentJobTitle>
  <CurrentNoticePeriod>sample string 2</CurrentNoticePeriod>
  <JobSeekerID>sample string 5</JobSeekerID>
  <RegisteredWithAgency>true</RegisteredWithAgency>
</CandidateWorkExperienceUpdate>

multipart/form-data

Sample:
<CandidateWorkExperienceUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO"><AgencyName>sample string 4</AgencyName><CurrentJobTitle>sample string 1</CurrentJobTitle><CurrentNoticePeriod>sample string 2</CurrentNoticePeriod><JobSeekerID>sample string 5</JobSeekerID><RegisteredWithAgency>true</RegisteredWithAgency></CandidateWorkExperienceUpdate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

COMPLETE

boolean

Response Formats

application/json, text/json

Sample:
true

text/xml, multipart/form-data

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>