POST Api/Applicant/Knowledge/{applicantId}

Creates or updates a specific knowledge a a specific applicant.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
applicantId

The ID of the applicant.

integer

Required

Body Parameters

The knowledge to create or update.

ApplicantKnowledgeParameter
NameDescriptionTypeAdditional information
Knowledge

string

None.

Level

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Knowledge": "sample string 1",
  "Level": "sample string 2"
}

application/xml, text/xml

Sample:
<ApplicantKnowledgeParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">
  <Knowledge>sample string 1</Knowledge>
  <Level>sample string 2</Level>
</ApplicantKnowledgeParameter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The newly created or updated applicant knowledge.

ApplicantKnowledgeResponse
NameDescriptionTypeAdditional information
Knowledge

string

None.

Level

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Knowledge": "sample string 1",
  "Level": "sample string 2"
}

application/xml, text/xml

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