POST api/applicant/candidate-profile

Request Information

URI Parameters

None.

Body Parameters

CandidateProfileDTOW
NameDescriptionTypeAdditional information
fullName

string

None.

email

string

None.

phone

string

None.

location

string

None.

linkedInUrl

string

None.

gitHubUrl

string

None.

portfolioUrl

string

None.

summary

string

None.

totalYearsOfExperience

decimal number

None.

workHistory

string

None.

education

string

None.

technicalSkills

string

None.

softSkills

string

None.

languages

string

None.

certifications

string

None.

achievements

string

None.

Request Formats

application/json, text/json

Sample:
{
  "fullName": "sample string 1",
  "email": "sample string 2",
  "phone": "sample string 3",
  "location": "sample string 4",
  "linkedInUrl": "sample string 5",
  "gitHubUrl": "sample string 6",
  "portfolioUrl": "sample string 7",
  "summary": "sample string 8",
  "totalYearsOfExperience": 1.0,
  "workHistory": "sample string 9",
  "education": "sample string 10",
  "technicalSkills": "sample string 11",
  "softSkills": "sample string 12",
  "languages": "sample string 13",
  "certifications": "sample string 14",
  "achievements": "sample string 15"
}

application/xml, text/xml

Sample:
<CandidateProfileDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.ReadOnly">
  <achievements>sample string 15</achievements>
  <certifications>sample string 14</certifications>
  <education>sample string 10</education>
  <email>sample string 2</email>
  <fullName>sample string 1</fullName>
  <gitHubUrl>sample string 6</gitHubUrl>
  <languages>sample string 13</languages>
  <linkedInUrl>sample string 5</linkedInUrl>
  <location>sample string 4</location>
  <phone>sample string 3</phone>
  <portfolioUrl>sample string 7</portfolioUrl>
  <softSkills>sample string 12</softSkills>
  <summary>sample string 8</summary>
  <technicalSkills>sample string 11</technicalSkills>
  <totalYearsOfExperience>1</totalYearsOfExperience>
  <workHistory>sample string 9</workHistory>
</CandidateProfileDTOW>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CandidateProfileDTOW'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.