POST api/JobPosts/SaveCandidateFeedback

Request Information

URI Parameters

None.

Body Parameters

CandidateFeedback
NameDescriptionTypeAdditional information
CandName

string

None.

JobTitle

string

None.

Rating

integer

None.

Feedback

string

None.

CompanyId

integer

None.

Attended

boolean

None.

UserID

string

None.

InterviewStatus

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CandName": "sample string 1",
  "JobTitle": "sample string 2",
  "Rating": 3,
  "Feedback": "sample string 4",
  "CompanyId": 5,
  "Attended": true,
  "UserID": "sample string 7",
  "InterviewStatus": "sample string 8"
}

application/xml, text/xml

Sample:
<CandidateFeedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoftbreaksAPI.Models">
  <Attended>true</Attended>
  <CandName>sample string 1</CandName>
  <CompanyId>5</CompanyId>
  <Feedback>sample string 4</Feedback>
  <InterviewStatus>sample string 8</InterviewStatus>
  <JobTitle>sample string 2</JobTitle>
  <Rating>3</Rating>
  <UserID>sample string 7</UserID>
</CandidateFeedback>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

OutputBaseClass
NameDescriptionTypeAdditional information
IsCallSuccessful

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsCallSuccessful": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<OutputBaseClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoftbreaksAPI.Models">
  <IsCallSuccessful>true</IsCallSuccessful>
  <Message>sample string 2</Message>
</OutputBaseClass>