Update Embed Link - Zoho Show

Note:

  • This task is applicable to all services except Zoho Creator.
  • Each time the zoho.show.updateEmbedUrl 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.show.updateEmbedUrl 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 an embed URL in the specific slide of a presentation.

Syntax

<response> = zoho.show.updateEmbedUrl(<rid>, <slideId>, <embedShapeId>,  <embedUrl>, <connection>);

Scope

ZohoShow.showedit.UPDATE

Parameter

ParameterDescriptionData type
<response>Variable that holds update statusKEY-VALUE
<rid>

ID of the presentation

Note:

  • You can get the presentation ID (rid) directly from the presentation URL.
  • The URL of a Zoho Show presentation will be in the following format:

https://show.zoho.in/show/open/{rid}

TEXT
<slideId>ID of the slide containing the embedTEXT
<embedShapeId>ID of the embed shapeTEXT
<embedUrl>New embed URLTEXT
<connection>Name of Zoho Show connectionCONNECTION

Example

The following script updates an embed link in a specific slide of a presentation.

rid = "xfXXXXXX";
slideId = "C0XXX-XXX-XXX-XXX-XXX";
embedUrl = "https://www.zoho.com/embed/26XXXX?si=maXXX_sXXX";
embedShapeId = "D2XXX-XXX-XXX-XXX-XXX";
response = zoho.show.updateDataLinks(rid,slideId,embedShapeId,embedUrl,"zoho_show_connection");

where:

xfXXXXXX
This is the presentation ID.
C0XXX-XXX-XXX-XXX-XXX
ID of the slide containing embed
D2XXX-XXX-XXX-XXX-XXX
ID of the shape containing embed
zoho_show_connection
This is the text that represents the name of the connection link.

Response

{
  "Updated embed url": "https://www.zoho.com/embed/26XXXX?si=maXXX_sXXX",
  "status": "success"
}