POST api/Medical/AddOrModifyInterViews

Request Information

URI Parameters

None.

Body Parameters

InterviewModel
NameDescriptionTypeAdditional information
DBNo

integer

None.

AppNo

integer

None.

InterviewID

integer

None.

Job_Ad_PublishHistoryID

integer

None.

CandidateUserProfileID

integer

None.

ScheduleStartDate

date

None.

ScheduleEndDate

date

None.

InterviewTimeStart

string

None.

InterviewTimeEnd

string

None.

Interview_type

integer

None.

Interview_status

integer

None.

Interview_notes

string

None.

Interviewtitle

string

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

CreatedBy

integer

None.

UpdatedBy

integer

None.

Notes

string

None.

Logid

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "DBNo": 1,
  "AppNo": 1,
  "InterviewID": 1,
  "Job_Ad_PublishHistoryID": 1,
  "CandidateUserProfileID": 2,
  "ScheduleStartDate": "2026-04-06T21:32:13.9396022-05:00",
  "ScheduleEndDate": "2026-04-06T21:32:13.9396022-05:00",
  "InterviewTimeStart": "sample string 4",
  "InterviewTimeEnd": "sample string 5",
  "Interview_type": 1,
  "Interview_status": 1,
  "Interview_notes": "sample string 6",
  "Interviewtitle": "sample string 7",
  "IsActive": true,
  "IsDeleted": true,
  "CreatedBy": 8,
  "UpdatedBy": 1,
  "Notes": "sample string 9",
  "Logid": 1
}

application/xml, text/xml

Sample:
<InterviewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model">
  <AppNo>1</AppNo>
  <CandidateUserProfileID>2</CandidateUserProfileID>
  <CreatedBy>8</CreatedBy>
  <DBNo>1</DBNo>
  <InterviewID>1</InterviewID>
  <InterviewTimeEnd>sample string 5</InterviewTimeEnd>
  <InterviewTimeStart>sample string 4</InterviewTimeStart>
  <Interview_notes>sample string 6</Interview_notes>
  <Interview_status>1</Interview_status>
  <Interview_type>1</Interview_type>
  <Interviewtitle>sample string 7</Interviewtitle>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <Job_Ad_PublishHistoryID>1</Job_Ad_PublishHistoryID>
  <Logid>1</Logid>
  <Notes>sample string 9</Notes>
  <ScheduleEndDate>2026-04-06T21:32:13.9396022-05:00</ScheduleEndDate>
  <ScheduleStartDate>2026-04-06T21:32:13.9396022-05:00</ScheduleStartDate>
  <UpdatedBy>1</UpdatedBy>
</InterviewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Status

ResultStatus

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 100,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics">
  <Data />
  <Message>sample string 1</Message>
  <Status>Success</Status>
</Result>