POST api/applicant/applicantskills/create/{applicantID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| applicantID | integer |
Required |
Body Parameters
Collection of RecApplicantSkillsDTOW| Name | Description | Type | Additional information |
|---|---|---|---|
| skill_id | integer |
Required |
|
| proficiency_id | integer |
Required |
|
| years_of_experience | integer |
Required |
Request Formats
application/json, text/json
Sample:
[
{
"skill_id": 1,
"proficiency_id": 2,
"years_of_experience": 3
},
{
"skill_id": 1,
"proficiency_id": 2,
"years_of_experience": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfRecApplicantSkillsDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable">
<RecApplicantSkillsDTOW>
<proficiency_id>2</proficiency_id>
<skill_id>1</skill_id>
<years_of_experience>3</years_of_experience>
</RecApplicantSkillsDTOW>
<RecApplicantSkillsDTOW>
<proficiency_id>2</proficiency_id>
<skill_id>1</skill_id>
<years_of_experience>3</years_of_experience>
</RecApplicantSkillsDTOW>
</ArrayOfRecApplicantSkillsDTOW>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.