PUT Api/Applicant/Language/{applicantId}

Creates a new language skill for a specific applicant.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
applicantId

The ID of the applicant.

integer

Required

Body Parameters

The language skill to create.

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 newly created applicant 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>