DeleteInterviewer

Description

Delete an interviewer.

Signature
int DeleteInterviewer(string key, string userId)

Parameters

Name Data Type Description

key

string required

The authentication key

userId

string required

The interviewer’s user id.

Response

Data Type Description

int

The (internal) interviewerId if the delete is successful; -1 if the user id already exists.

Example

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

//***************************************************
//
// DeleteInterviewer
//
//***************************************************

int internalCapiInterviewerId = capi.DeleteInterviewer(key, "john");
if (internalCapiInterviewerId == -1)
{
	// The user id does not exist
}