Zoho Recruit icon

Zoho Recruit

Interact with Zoho Recruit API

Actions25

Overview

This node interacts with the Zoho Recruit API to retrieve detailed information about a specific profile within a Zoho Recruit account. The "Get Profile" operation fetches data for a single profile identified by its unique Profile ID.

Typical use cases include:

  • Automating workflows that require fetching user or role profiles from Zoho Recruit.
  • Integrating Zoho Recruit profile data into other systems or dashboards.
  • Triggering actions based on profile attributes in recruitment automation processes.

For example, you might use this node to get the permissions or settings associated with a particular profile to customize candidate handling or access control in your workflow.

Properties

Name Meaning
Profile ID The unique identifier of the profile to retrieve from Zoho Recruit. This is a required string input. Example: 1000000000001

Output

The node outputs JSON data representing the requested profile's details as returned by the Zoho Recruit API. The structure typically includes fields such as profile name, description, permissions, and other metadata defined in Zoho Recruit profiles.

No binary data output is produced by this operation.

Example output JSON (simplified):

{
  "profile": {
    "id": "1000000000001",
    "name": "Recruiter",
    "description": "Profile with recruiter permissions",
    "permissions": [ ... ]
  }
}

Dependencies

  • Requires an OAuth2 API credential configured for Zoho Recruit with appropriate scopes to read profile data.
  • The node uses the Zoho Recruit API endpoint corresponding to the region of the OAuth token.
  • No additional external dependencies beyond the configured API credentials.

Troubleshooting

  • Missing Profile ID: The operation requires a valid Profile ID. If omitted or empty, the node will throw an error indicating the missing parameter.
  • Invalid Profile ID: If the provided Profile ID does not exist or is invalid, the API will return an error which the node surfaces. Verify the ID correctness.
  • Authentication Errors: If the OAuth token is expired or invalid, authentication errors will occur. Re-authenticate the credentials in n8n.
  • API Rate Limits: Zoho Recruit enforces rate limits; hitting these may cause temporary failures. Implement retry logic or reduce request frequency.
  • Network Issues: Connectivity problems can cause request failures. Ensure network access to Zoho Recruit endpoints.

Links and References

Discussion