Zoho Recruit icon

Zoho Recruit

Interact with Zoho Recruit API

Actions25

Overview

This node operation deletes a photo associated with a record in Zoho Recruit, specifically for either a Candidate or a Contact. It is useful when you need to remove outdated or incorrect photos from these records within your recruitment workflow automation.

Typical use cases include:

  • Automatically removing a candidate's photo when their profile is deleted or updated.
  • Cleaning up contact photos that are no longer relevant.
  • Managing photo assets programmatically as part of a larger HR or recruitment process.

Properties

Name Meaning
Record ID The unique identifier of the Candidate or Contact whose photo you want to delete.
Module Specifies whether the photo belongs to a "Candidate" or a "Contact".

Output

The output JSON contains the response from the Zoho Recruit API after attempting to delete the photo. This typically includes status information indicating success or failure of the deletion request.

No binary data is output by this operation since it only performs deletion.

Example output structure (simplified):

{
  "json": {
    // API response confirming deletion or error details
  }
}

Dependencies

  • Requires an OAuth2 API credential configured for Zoho Recruit to authenticate API requests.
  • The node uses the Zoho Recruit REST API endpoint corresponding to the region of the OAuth token.
  • No additional external dependencies beyond the configured credentials and network access to Zoho Recruit API.

Troubleshooting

  • Missing Record ID: The node will throw an error if the Record ID is not provided. Ensure the "Record ID" property is set.
  • Invalid OAuth Token: If the OAuth token is missing or expired, the node will prompt re-authentication of the Zoho Recruit credentials.
  • API Errors: Any errors returned by the Zoho Recruit API (e.g., record not found, permission denied) will be surfaced in the node’s output.
  • Module Selection: Make sure the "Module" property correctly matches the type of record (Candidate or Contact). Using the wrong module may cause the API call to fail.

Links and References

Discussion