POST Auth/CompleteCandidateProfile

Request Information

URI Parameters

None.

Body Parameters

CompleteCandidateProfileRequest
NameDescriptionTypeAdditional information
user_id

integer

None.

admin_id

integer

None.

email

string

None.

total_experience

decimal number

None.

education_json

string

None.

license_json

string

None.

work_exp_json

string

None.

skills_json

string

None.

language

string

None.

job_type

string

None.

work_mode

string

None.

relocation

string

None.

work_status

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "user_id": 1,
  "admin_id": 2,
  "email": "sample string 3",
  "total_experience": 4.0,
  "education_json": "sample string 5",
  "license_json": "sample string 6",
  "work_exp_json": "sample string 7",
  "skills_json": "sample string 8",
  "language": "sample string 9",
  "job_type": "sample string 10",
  "work_mode": "sample string 11",
  "relocation": "sample string 12",
  "work_status": true
}

application/xml, text/xml

Sample:
<CompleteCandidateProfileRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OffshorePlacementsAPI.Models">
  <admin_id>2</admin_id>
  <education_json>sample string 5</education_json>
  <email>sample string 3</email>
  <job_type>sample string 10</job_type>
  <language>sample string 9</language>
  <license_json>sample string 6</license_json>
  <relocation>sample string 12</relocation>
  <skills_json>sample string 8</skills_json>
  <total_experience>4</total_experience>
  <user_id>1</user_id>
  <work_exp_json>sample string 7</work_exp_json>
  <work_mode>sample string 11</work_mode>
  <work_status>true</work_status>
</CompleteCandidateProfileRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CompleteCandidateProfileResponse
NameDescriptionTypeAdditional information
status

string

None.

remarks

string

None.

pending_sections

string

None.

profile_completion_percentage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "remarks": "sample string 2",
  "pending_sections": "sample string 3",
  "profile_completion_percentage": "sample string 4"
}

application/xml, text/xml

Sample:
<CompleteCandidateProfileResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OffshorePlacementsAPI.Models">
  <pending_sections>sample string 3</pending_sections>
  <profile_completion_percentage>sample string 4</profile_completion_percentage>
  <remarks>sample string 2</remarks>
  <status>sample string 1</status>
</CompleteCandidateProfileResponse>