Creator Help

Upload a document in Zoho Recruit

Upload document in Zoho Recruit

You can upload a candidates resume into Zoho Recruit from Zoho Creator, using zoho.recruit.uploadDocument() Deluge task.This task will parse the input document and create a record in the "Candidates" module in Zoho Recruit.

Syntax

<Recruit Response> = zoho.recruit.uploadDocument(<fileName>, <Country>);

where,
<fileName> is the name of the file to be uploaded
<Country> the values allowed are - ECONN_IN_KEY, ECONN_US_KEY, ECONN_UK_KEY, ECONN_IN_KEY, ECONN_AUS_KEY, ECONN_NET_KEY, ECONN_FRA_KEY, ECONN_IRE_KEY, ECONN_SING_KEY, ECONN_PORT_KEY

Example

Sample script to upload a document in Zoho Recruit from Zoho Creator.

Country = "ECONN_IN_KEY";
fetch = Test [ID == 2000000010007];
resp = zoho.recruit.uploadDocument(fetch.Upload_Document, Country)

Response Format

The response returned by Zoho Recruit as map.

{"message":"Record(s) added successfully","Id":"471000000044125"}

Top