POST api/JobApplication/ApplyForJob

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

job_application_response
NameDescriptionTypeAdditional information
success

boolean

None.

message

string

None.

application_id

integer

None.

resume_url

string

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "application_id": 3,
  "resume_url": "sample string 4"
}

application/xml, text/xml

Sample:
<job_application_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Controllers">
  <application_id>3</application_id>
  <message>sample string 2</message>
  <resume_url>sample string 4</resume_url>
  <success>true</success>
</job_application_response>