GET Api/Applicant/Language/{id}

Returns a specific language skill of an applicant.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the language skill.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The language skill (if it exists).

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>