Attach File in Zoho CRM V8

Note:

  • Each time the zoho.crm.v8.attachFile integration task is executed, it triggers an API request in the back-end. This call is deducted from the external calls limit available for the service from which the task is executed, based on your pricing plan.
  • Only actual executions that receive a response (whether success or failure) are counted, not the number of times the task appears in the script. For example, if zoho.crm.v8.attachFile integration task is placed inside a for each task that iterates five times, the number of external calls consumed will be five, even though the task appears only once in the script. 

Overview

This task is used to attach a file to a Zoho CRM record based on the specified module name and record ID.

Syntax 

<variable> = zoho.crm.v8.attachFile(<module>, <record_id>, <file_object>, <connection>);

where,

ParameterData typeDescription
<variable>KEY-VALUEHolds the response returned by Zoho CRM on successful task execution or error details on task failure.
<module>TEXT

Specifies the API name of the module that contains the record to which the file needs to be attached.

Applicable modules can be found on this page.

<record_id>NUMBERSpecifies the ID of the record to which the file needs to be attached.
<file_object>FILESpecifies the file that needs to be attached.
<connection>TEXT

Represents the link name of the connection which is connected to your Zoho CRM account.

Note:

Example : Attach a file to a record in Leads module

The following script attaches the file - file_object, to the record with ID - 4770XXXXXXXXXX in the Zoho CRM module - Leads.

file_object = invokeUrl
[
url: "https://assets.pcmag.com/media/images/431075-zoho-logo.jpg?width=810&height=456"
type: GET
];
response = zoho.crm.v8.attachFile("Leads",4770XXXXXXXXXX,file_object);

where,

response
is the variable which holds the response returned by Zoho CRM. Here it represents the creation and modification information of the record and the status of the task.
"Leads"
is the TEXT that represents the API name of the ZOHO CRM module that contains the record to which the file needs to be attached.
4770XXXXXXXXXX
is the NUMBER that represents the record ID.
file_object
is the FILE variable that holds the attachment file.

Note: The invokeUrl task fetches the file from cloud storage.

Response Format

Success Response

  • The success response returned is of the following format

    {
       "code":"SUCCESS",
       "details":{
          "Modified_Time":"2018-12-11T12:20:45+05:30",
          "Modified_By":{"name":"John","id":"4770XXXXXXXXXXXXXXX"},
          "Created_Time":"2018-12-11T12:20:45+05:30",
          "id":"4770XXXXXXXXXXXXXXX",
          "Created_By":{"name":"John","id":"4770XXXXXXXXXXXXXXX"}
       },
       "message":"attachment uploaded successfully",
       "status":"success"
    }

Failure Response

  • The failure response returned for incorrect or non-existent record ID is of the following format

    {
       "code":"INVALID_DATA",
       "details":{},
       "message":"the related id given seems to be invalid",
       "status":"error"
    }