Zoho Recruit icon

Zoho Recruit

Interact with Zoho Recruit API

Actions25

Overview

This node integrates with the Zoho Recruit API to manage recruitment-related data. Specifically, for the Candidate - Get operation, it retrieves detailed information about a single candidate by their unique Candidate ID.

Typical use cases include:

  • Fetching candidate details during recruitment workflows.
  • Integrating candidate data into other systems or dashboards.
  • Automating candidate status checks or updates based on retrieved data.

For example, you might use this node to get a candidate's profile before sending them an email or updating their application status in another system.

Properties

Name Meaning
Candidate ID The unique identifier of the candidate whose details you want to retrieve. This is a required string input.

Output

The output contains a JSON object representing the candidate's data as returned by the Zoho Recruit API. This typically includes fields such as name, contact details, experience, qualifications, and other candidate-specific information stored in Zoho Recruit.

The output structure is:

{
  "data": [
    {
      // Candidate fields like First_Name, Last_Name, Email, Mobile, etc.
    }
  ]
}

No binary data is output for this operation.

Dependencies

  • Requires an OAuth2 API credential configured for Zoho Recruit to authenticate API requests.
  • The node uses the Zoho Recruit REST API endpoint, which varies depending on the region (e.g., .com, .eu, .in).
  • Proper network access to Zoho Recruit API endpoints is necessary.

Troubleshooting

  • Invalid Candidate ID: If the provided Candidate ID does not exist or is malformed, the API will return an error. Ensure the ID is correct and numeric if applicable.
  • Authentication Errors: If the OAuth token is expired or invalid, re-authenticate the credentials.
  • API Rate Limits: Zoho may limit the number of API calls; handle errors accordingly.
  • Network Issues: Connectivity problems can cause request failures; verify network access.
  • Empty Response: If no candidate matches the ID, the response data array may be empty.

Links and References

Discussion