POST api/JobSeeker/Profile/SendResume

Request Information

URI Parameters

None.

Body Parameters

SendResumeInput
NameDescriptionTypeAdditional information
Name

string

None.

Email

string

None.

Subject

string

None.

Message

string

None.

Request Formats

application/json, text/json

Sample:
{
  "name": "sample string 1",
  "email": "sample string 2",
  "subject": "sample string 3",
  "message": "sample string 4"
}

application/xml, text/xml

Sample:
<SendResumeInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIService.Models.JobSeeker">
  <Email>sample string 2</Email>
  <Message>sample string 4</Message>
  <Name>sample string 1</Name>
  <Subject>sample string 3</Subject>
</SendResumeInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ProfileOutput
NameDescriptionTypeAdditional information
FailMessage

string

None.

Success

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "failMessage": "sample string 1",
  "success": true
}

application/xml, text/xml

Sample:
<ProfileOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIService.Models.JobSeeker">
  <FailMessage>sample string 1</FailMessage>
  <Success>true</Success>
</ProfileOutput>