POST api/JobPosts/SaveCandidateDetailsForSalesManager
Request Information
URI Parameters
None.
Body Parameters
CandidateDetailsAvailability| Name | Description | Type | Additional information |
|---|---|---|---|
| CandId | integer |
None. |
|
| OldScheduleDate | date |
None. |
|
| UserId | string |
None. |
|
| SlotIDs | Collection of integer |
None. |
|
| ScheduleDate | date |
None. |
|
| IsSevenDayAvailable | boolean |
None. |
|
| NoticePeriod | integer |
None. |
|
| ResignedDate | date |
None. |
|
| IsResigned | boolean |
None. |
|
| CurrentLocation | string |
None. |
|
| TotalExperience | integer |
None. |
|
| CurrentCTC | decimal number |
None. |
|
| ExpectedCTC | decimal number |
None. |
|
| OralCommunication | integer |
None. |
|
| CurrentCompany | string |
None. |
|
| IsVisible | boolean |
None. |
|
| Actualsize | integer |
None. |
|
| UserName | string |
None. |
|
| CompanyID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CandId": 1,
"OldScheduleDate": "2025-12-07T12:45:04.4053907+05:30",
"UserId": "sample string 3",
"SlotIDs": [
1,
2
],
"ScheduleDate": "2025-12-07T12:45:04.4211539+05:30",
"IsSevenDayAvailable": true,
"NoticePeriod": 6,
"ResignedDate": "2025-12-07T12:45:04.4211539+05:30",
"IsResigned": true,
"CurrentLocation": "sample string 9",
"TotalExperience": 10,
"CurrentCTC": 11.0,
"ExpectedCTC": 12.0,
"OralCommunication": 13,
"CurrentCompany": "sample string 14",
"IsVisible": true,
"Actualsize": 16,
"UserName": "sample string 17",
"CompanyID": 18
}
application/xml, text/xml
Sample:
<CandidateDetailsAvailability xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoftbreaksAPI.Models">
<Actualsize>16</Actualsize>
<CandId>1</CandId>
<CompanyID>18</CompanyID>
<CurrentCTC>11</CurrentCTC>
<CurrentCompany>sample string 14</CurrentCompany>
<CurrentLocation>sample string 9</CurrentLocation>
<ExpectedCTC>12</ExpectedCTC>
<IsResigned>true</IsResigned>
<IsSevenDayAvailable>true</IsSevenDayAvailable>
<IsVisible>true</IsVisible>
<NoticePeriod>6</NoticePeriod>
<OldScheduleDate>2025-12-07T12:45:04.4053907+05:30</OldScheduleDate>
<OralCommunication>13</OralCommunication>
<ResignedDate>2025-12-07T12:45:04.4211539+05:30</ResignedDate>
<ScheduleDate>2025-12-07T12:45:04.4211539+05:30</ScheduleDate>
<SlotIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</SlotIDs>
<TotalExperience>10</TotalExperience>
<UserId>sample string 3</UserId>
<UserName>sample string 17</UserName>
</CandidateDetailsAvailability>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OutputBaseClass| Name | Description | Type | Additional 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>