Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The getAssociatedCandidates operation retrieves a list of candidates who are associated with a particular job opening.

Code Block
languagexml
titlegetAssociatedCandidates
<zohorecruit.getAssociatedCandidates>
	<jobId>{$ctx:jobId}</jobId>
	<version>{$ctx:version}</version>
</zohorecruit.getAssociatedCandidates>
Properties
  • jobId: The unique ID of the Job Opening record.
  • version : Fetch responses based on the latest API implementation.
Related Zoho Recruit documentation

https://www.zoho.com/recruit/api-new/api-methods/getAssociatedCandidatesMethod.html

Anchor
request
request
Sample request

...

Code Block
languagexml
titleSample Request for getAssociatedCandidates
{
	"apiUrl" : "https://recruit.zoho.com",
	"authToken" : "8e8f36073ff4642cf23c2832b6f6722c",
	"scope" : "recruitapi",
	"jobId" : "291847000000064001",
	"responseFormat" : "json"
}
Related Zoho Recruit documentation

https://www.zoho.com/recruit/get-associated-candidates-api.html

...

Code Block
languagexml
titleSample Proxy
<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse" name="zohorecruit_getAssociatedCandidates" transports="https,http" statistics="disable" trace="disable" startOnLoad="true">
	<target>
		<inSequence onError="faultHandlerSeq">
			<property name="apiUrl" expression="json-eval($.apiUrl)" />
			<property name="authToken" expression="json-eval($.authToken)" />
			<property name="scope" expression="json-eval($.scope)" />
			<property name="jobId" expression="json-eval($.jobId)" />
			<property name="responseFormat" expression="json-eval($.responseFormat)" />
			<property name="version" expression="json-eval($.version)" />
			<zohorecruit.init>
				<apiUrl>{$ctx:apiUrl}</apiUrl>
				<authToken>{$ctx:authToken}</authToken>
				<scope>{$ctx:scope}</scope>
				<responseFormat>{$ctx:responseFormat}</responseFormat>
			</zohorecruit.init>
			<zohorecruit.getAssociatedCandidates>
				<jobId>{$ctx:jobId}</jobId>
				<version>{$ctx:version}</version>
		    </zohorecruit.getAssociatedCandidates>
			<respond />
		</inSequence>
		<outSequence>
			<send />
		</outSequence>
	</target>
	<description />
</proxy>