GET Api/Applicant/Languages/{applicantId}

Returns all language skills of a certain applicant.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
applicantId

The ID of the applicant.

integer

Required

Body Parameters

None.

Response Information

Resource Description

A list of language skills.

Collection of 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"
  },
  {
    "Id": 1,
    "Language": "sample string 2",
    "Level": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfApplicantLanguageResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Responses">
  <ApplicantLanguageResponse>
    <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>
  <ApplicantLanguageResponse>
    <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>
</ArrayOfApplicantLanguageResponse>