SendMessageToInterviewers

Description

Send a message to all interviewers.

Signature
void SendMessageToAllInterviewers(string key, MessageContent messageContent)

Parameters

Name Data Type Description

key

string required

The authentication key

messageContent

MessageContent required

The message content.

Response

Data Type Description

Example

// Create instance of the webservice
var capi = new CapiSoapClient();

//***************************************************
//
// SendMessageToAllInterviewers
//
//***************************************************

MessageContent messageContent = new MessageContent();
messageContent.Subject = "Important information";
messageContent.Body = "Please come to the information meeting at the end of this week\n\nRegards,\nJohn Doe";

capi.SendMessageToAllInterviewers(key, messageContent);