Update related record in Zoho Desk
Table of Contents
Note:
- Each time the zoho.desk.updateRelatedRecord 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.desk.updateRelatedRecord 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 update a related record in a submodule belonging to a record in a parent module in Zoho Desk.
Syntax
<variable> = zoho.desk.updateRelatedRecord(<orgID>, <sub_module>, <sub_recordID>, <parent_module>, <parent_recordID>, <record_value>, <connection>);
where,
| Params | Data type | Description |
| <variable> | KEY-VALUE | specifies the variable which will hold the response returned by Zoho Desk. It represents the values of the record updated. |
| <orgID> | NUMBER | specifies the organization ID of the account in which the record will be updated. This can be found in Zoho Desk Settings > Developer Space > API. ![]() |
| <sub_module> | TEXT | specifies the name of the submodule in which the record will be updated. This task allows you to update:
|
| <sub_recordID> | NUMBER | specifies the ID of the related record that will be updated. |
| <parent_module> | TEXT | specifies the name of the module in which the related record will be updated. |
| <parent_recordID> | NUMBER | specifies the ID of the parent record. Learn how to fetch the record ID after creating, searching or fetching records. |
| <record_value> | KEY-VALUE | specifies the new values of the record that needs to be updated. To learn about the mandatory fields, click here and go to <ModuleName> -> Create <ModuleName> |
<connection> (optional)* | TEXT | specifies the name of the connection. The scopes which need to be selected are: *Note: This is a mandatory param when used in Zoho Creator. |
Example
The following script updates the timeEntry of ID - 168XXXXXXXXXXXX065 associated to the task of ID - 168XXXXXXXXXXXX043 with the value - 14 and 2019-02-16T07:38:48.000Z for the records hoursSpent and executedTime respectively.
recordValue = { "hoursSpent":"4", "executedTime":"2019-02-16T07:38:48.000Z"}; response = zoho.desk.updateRelatedRecord(641XXXXXX, "timeEntry", 168XXXXXXXXXXXX065, "tasks", 168XXXXXXXXXXXXX043, recordValue, "desk_connection");
where,
response641XXXXXX"timeEntry"168XXXXXXXXXXXX065"tasks"168XXXXXXXXXXXXX043recordValue"hoursSpent" "executedTime"
"desk_connection"Sample Response
Success Response
The success response returned is of the following format. It represents the new values of the related record updated in the submodule.
{
"customFields": {
"bugTimeLogID": null,
"Date and Time Completed": null
},
"ownerId": "168XXXXXXXXXXXX005",
"requestChargeType": "Customer Service",
"executedTime": "2019-02-16T07:38:48.000Z",
"hoursSpent": "4",
"minutesSpent": "23",
"secondsSpent": "21",
"agentCostPerHour": "3.0",
"additionalCost": "10.0",
"totalCost": "23.17",
"description": "Time Entry description",
"requestId": null,
"createdTime": "2019-02-26T04:19:24.000Z",
"createdBy": "168XXXXXXXXXXXX005",
"departmentId": "168XXXXXXXXXXXX907",
"parent": {
"associatedTicketId": "400XXXXXXXXXXX017",
"id": "168XXXXXXXXXXXX043",
"type": "TASKS"
},
"invoiceId": "400XXXXXXXXXXX212",
"id": "168XXXXXXXXXXXX001",
"taskId": "168XXXXXXXXXXXX043"
}
Failure Response
The failure response returned for incorrect or non-existent organization ID is of the following format.
{
"errorCode":"UNPROCESSABLE_ENTITY",
"message":"The value passed for the 'orgId' parameter is invalid."
}The failure response returned for incorrect or non-existent record ID is of the following format.
{
"errorCode":"INTERNAL_SERVER_ERROR",
"message":"An internal server error occurred while performing this operation."
}The failure response returned for incorrect or non-existent parent ID is of the following format.
{
"errorCode":"URL_NOT_FOUND",
"message":"The URL you requested could not be found."
}
