POST Api/Applicant/Language/{id}

Updates a specific applicant language skill.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the language skill.

integer

Required

Body Parameters

The updated information of the language skill.

ApplicantLanguageParameter
NameDescriptionTypeAdditional information
Language

string

None.

Level

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Language": "sample string 1",
  "Level": "sample string 2"
}

application/xml, text/xml

Sample:
<ApplicantLanguageParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">
  <Language>sample string 1</Language>
  <Level>sample string 2</Level>
</ApplicantLanguageParameter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The updated language skill.

ApplicantLanguageResponse
NameDescriptionTypeAdditional information
Id

integer

None.

Language

string

None.

Level

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Language": "sample string 2",
  "Level": "sample string 3"
}

application/xml, text/xml

Sample:
<ApplicantLanguageResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Responses">
  <Language xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">sample string 2</Language>
  <Level xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">sample string 3</Level>
  <Id>1</Id>
</ApplicantLanguageResponse>