PUT api/Candidates/{CandidateId}/PhoneCall

Used to Add Phone Call for Candidate.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CandidateId

integer

Required

Body Parameters

PhoneCallDO
NameDescriptionTypeAdditional information
PhoneNumber

This is the phone number.

string

None.

PhoneCallType

This is PhoneCallType

string

None.

Comments

This is PhoneCall comments

string

None.

AddToWhiteBoard

This is to add the comment to the white board of the Candidate.

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "PhoneNumber": "sample string 1",
  "PhoneCallType": "sample string 2",
  "Comments": "sample string 3",
  "AddToWhiteBoard": true
}

text/xml

Sample:
<PhoneCallDO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO">
  <AddToWhiteBoard>true</AddToWhiteBoard>
  <Comments>sample string 3</Comments>
  <PhoneCallType>sample string 2</PhoneCallType>
  <PhoneNumber>sample string 1</PhoneNumber>
</PhoneCallDO>

multipart/form-data

Sample:
<PhoneCallDO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO"><AddToWhiteBoard>true</AddToWhiteBoard><Comments>sample string 3</Comments><PhoneCallType>sample string 2</PhoneCallType><PhoneNumber>sample string 1</PhoneNumber></PhoneCallDO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

COMPLETE

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>