POST api/MasterVendor/Interview

@BaseMessageCode='RequestInterviewCandidate' or @BaseMessageCode='Record Client Contact Interview' Record Client Contact Interview: If FirstInterviewDate is null then SecondInterview and vice versa

Request Information

URI Parameters

None.

Body Parameters

InterviewData
NameDescriptionTypeAdditional information
BaseMessageCode

@BaseMessageCode='RequestInterviewCandidate' or @BaseMessageCode='Record Client Contact Interview'

string

None.

OrderCode

string

None.

CandidateCode

string

None.

FirstInterviewDate

Only for Record Client Contact Interview Set this value for first stage and set SecondInterviewDate value as null

date

None.

SecondInterviewDate

Only for Record Client Contact Interview Set this value for second stage and set FirstInterviewDate value as null

date

None.

Request Formats

application/json, text/json

Sample:
{
  "BaseMessageCode": "sample string 1",
  "OrderCode": "sample string 2",
  "CandidateCode": "sample string 3",
  "FirstInterviewDate": "2024-06-29T07:38:15.3656367+10:00",
  "SecondInterviewDate": "2024-06-29T07:38:15.3656367+10:00"
}

text/xml

Sample:
<InterviewData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models">
  <BaseMessageCode>sample string 1</BaseMessageCode>
  <CandidateCode>sample string 3</CandidateCode>
  <FirstInterviewDate>2024-06-29T07:38:15.3656367+10:00</FirstInterviewDate>
  <OrderCode>sample string 2</OrderCode>
  <SecondInterviewDate>2024-06-29T07:38:15.3656367+10:00</SecondInterviewDate>
</InterviewData>

multipart/form-data

Sample:
<InterviewData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models"><BaseMessageCode>sample string 1</BaseMessageCode><CandidateCode>sample string 3</CandidateCode><FirstInterviewDate>2024-06-29T07:38:15.3656367+10:00</FirstInterviewDate><OrderCode>sample string 2</OrderCode><SecondInterviewDate>2024-06-29T07:38:15.3656367+10:00</SecondInterviewDate></InterviewData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

text/xml, multipart/form-data

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>