PUT Api/Applicant/Knowledges/{applicantId}
Creates, deletes or updates the knowledges of a certain applicant.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| applicantId |
The ID of the applicant. |
integer |
Required |
Body Parameters
The knowleges of the applicant.
Collection of ApplicantKnowledgeParameter| Name | Description | Type | Additional information |
|---|---|---|---|
| Knowledge | string |
None. |
|
| Level | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Knowledge": "sample string 1",
"Level": "sample string 2"
},
{
"Knowledge": "sample string 1",
"Level": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfApplicantKnowledgeParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">
<ApplicantKnowledgeParameter>
<Knowledge>sample string 1</Knowledge>
<Level>sample string 2</Level>
</ApplicantKnowledgeParameter>
<ApplicantKnowledgeParameter>
<Knowledge>sample string 1</Knowledge>
<Level>sample string 2</Level>
</ApplicantKnowledgeParameter>
</ArrayOfApplicantKnowledgeParameter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
A list containing the knowledges of the applicant.
Collection of ApplicantKnowledgeResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Knowledge | string |
None. |
|
| Level | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Knowledge": "sample string 1",
"Level": "sample string 2"
},
{
"Knowledge": "sample string 1",
"Level": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfApplicantKnowledgeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Responses">
<ApplicantKnowledgeResponse>
<Knowledge xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">sample string 1</Knowledge>
<Level xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">sample string 2</Level>
</ApplicantKnowledgeResponse>
<ApplicantKnowledgeResponse>
<Knowledge xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">sample string 1</Knowledge>
<Level xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">sample string 2</Level>
</ApplicantKnowledgeResponse>
</ArrayOfApplicantKnowledgeResponse>