POST api/JobPosts/BookTimeSlotsByCandidates

Request Information

URI Parameters

None.

Body Parameters

BookTimeSlotsInput
NameDescriptionTypeAdditional information
UserId

string

None.

UserName

string

None.

UserContactNo

string

None.

CandId

integer

None.

CandName

string

None.

TimeSlot

string

None.

ScheduleDate

date

None.

JobTitle

string

None.

RegistrationId

string

None.

Platform

string

None.

CompanyId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "sample string 1",
  "UserName": "sample string 2",
  "UserContactNo": "sample string 3",
  "CandId": 4,
  "CandName": "sample string 5",
  "TimeSlot": "sample string 6",
  "ScheduleDate": "2025-12-07T12:46:47.6081592+05:30",
  "JobTitle": "sample string 8",
  "RegistrationId": "sample string 9",
  "Platform": "sample string 10",
  "CompanyId": 11
}

application/xml, text/xml

Sample:
<BookTimeSlotsInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoftbreaksAPI.Models">
  <CandId>4</CandId>
  <CandName>sample string 5</CandName>
  <CompanyId>11</CompanyId>
  <JobTitle>sample string 8</JobTitle>
  <Platform>sample string 10</Platform>
  <RegistrationId>sample string 9</RegistrationId>
  <ScheduleDate>2025-12-07T12:46:47.6081592+05:30</ScheduleDate>
  <TimeSlot>sample string 6</TimeSlot>
  <UserContactNo>sample string 3</UserContactNo>
  <UserId>sample string 1</UserId>
  <UserName>sample string 2</UserName>
</BookTimeSlotsInput>

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>