PUT api/Candidates/{CandidateNo}/CandidateLanguage

Used to update candidate Language

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CandidateNo

string

Required

Body Parameters

Collection of CandidateLanguage
NameDescriptionTypeAdditional information
Id

This is the Candidate's Languages Id

integer

None.

Code

This is the Candidate's Languages

string

None.

IsPrimaryLanguage

This is the Candidate's Language Is Primary Language

boolean

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Code": "sample string 1",
    "IsPrimaryLanguage": true
  },
  {
    "Id": 1,
    "Code": "sample string 1",
    "IsPrimaryLanguage": true
  }
]

text/xml

Sample:
<ArrayOfCandidateLanguage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO">
  <CandidateLanguage>
    <Code>sample string 1</Code>
    <Id>1</Id>
    <IsPrimaryLanguage>true</IsPrimaryLanguage>
  </CandidateLanguage>
  <CandidateLanguage>
    <Code>sample string 1</Code>
    <Id>1</Id>
    <IsPrimaryLanguage>true</IsPrimaryLanguage>
  </CandidateLanguage>
</ArrayOfCandidateLanguage>

multipart/form-data

Sample:
<ArrayOfCandidateLanguage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO"><CandidateLanguage><Code>sample string 1</Code><Id>1</Id><IsPrimaryLanguage>true</IsPrimaryLanguage></CandidateLanguage><CandidateLanguage><Code>sample string 1</Code><Id>1</Id><IsPrimaryLanguage>true</IsPrimaryLanguage></CandidateLanguage></ArrayOfCandidateLanguage>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

COMPLETE

Collection of CandidateLanguage
NameDescriptionTypeAdditional information
Id

This is the Candidate's Languages Id

integer

None.

Code

This is the Candidate's Languages

string

None.

IsPrimaryLanguage

This is the Candidate's Language Is Primary Language

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Code": "sample string 1",
    "IsPrimaryLanguage": true
  },
  {
    "Id": 1,
    "Code": "sample string 1",
    "IsPrimaryLanguage": true
  }
]

text/xml

Sample:
<ArrayOfCandidateLanguage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO">
  <CandidateLanguage>
    <Code>sample string 1</Code>
    <Id>1</Id>
    <IsPrimaryLanguage>true</IsPrimaryLanguage>
  </CandidateLanguage>
  <CandidateLanguage>
    <Code>sample string 1</Code>
    <Id>1</Id>
    <IsPrimaryLanguage>true</IsPrimaryLanguage>
  </CandidateLanguage>
</ArrayOfCandidateLanguage>

multipart/form-data

Sample:
<ArrayOfCandidateLanguage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO"><CandidateLanguage><Code>sample string 1</Code><Id>1</Id><IsPrimaryLanguage>true</IsPrimaryLanguage></CandidateLanguage><CandidateLanguage><Code>sample string 1</Code><Id>1</Id><IsPrimaryLanguage>true</IsPrimaryLanguage></CandidateLanguage></ArrayOfCandidateLanguage>