DELETE Api/Applicant/Language/{id}
Deletes a specific applicant language skill.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the language skill. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The deleted language skill.
ApplicantLanguageResponse| Name | Description | Type | Additional 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>