POST api/JobPosts/GetCandidateDetailsForFeedBack
Request Information
URI Parameters
None.
Body Parameters
CandidateFeedbackDetailsInput| Name | Description | Type | Additional information |
|---|---|---|---|
| CandID | integer |
None. |
|
| JobID | integer |
None. |
|
| CompanyID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CandID": 1,
"JobID": 2,
"CompanyID": 3
}
application/xml, text/xml
Sample:
<CandidateFeedbackDetailsInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoftbreaksAPI.Models"> <CandID>1</CandID> <CompanyID>3</CompanyID> <JobID>2</JobID> </CandidateFeedbackDetailsInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CandidateFeedbackDetailsViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CandidateFeedbackDetails | CandidateFeedbackDetails |
None. |
|
| IsCallSuccessful | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"CandidateFeedbackDetails": {
"CandidateName": "sample string 1",
"ProfileName": "sample string 2"
},
"IsCallSuccessful": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<CandidateFeedbackDetailsViewModel 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>
<CandidateFeedbackDetails>
<CandidateName>sample string 1</CandidateName>
<ProfileName>sample string 2</ProfileName>
</CandidateFeedbackDetails>
</CandidateFeedbackDetailsViewModel>