Get Embed Links - Zoho Show
Note:
- This task is applicable to all services except Zoho Creator.
- Each time the zoho.show.getEmbedLinks 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.getEmbedLinks 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 fetch embed links present in the slides of a presentation.
Syntax
<response> = zoho.show.getEmbedLinks(<rid>, <from>, <limit>, <connection>);
Scope
ZohoShow.showdocinfo.READ
Parameter
| Parameter | Description | Data type |
| <response> | Variable that holds embed link details | KEY-VALUE |
| <rid> | ID of the presentation Note:
https://show.zoho.in/show/open/{rid} | TEXT |
| <from> | Starting index of slide | NUMBER |
| <limit> | Number of slides to retrieve | NUMBER |
| <connection> | Name of the Zoho Show connection | CONNECTION |
Example
The following script fetches embed links in a presentation. In this example it fetches embed links from the first 20 slides.
rid = "xfXXXXXX"; from = 1; limit = 20; response = zoho.show.getEmbedLinks(rid,from,limit,"zoho_show_connection");
where:
xfXXXXXX
This is the presentation ID.
zoho_show_connection
This is the text that represents the name of the connection link.
Response
{
"slides": [
{
"slideId": "90XXX-XXX-XXX-XXX-XXX",
"embeds": [
{
"embedUrl": "https://analytics.zoho.com/slideshow-view/318*****/31804*****/90********?frameorigin=https://show.zoho.com,https://show.zohopublic.com",
"embedShapeId": "7FXXX-XXX-XXX-XXX-XXX"
}
]
}
],
"totalSlides": 4
}
"slides": [
{
"slideId": "90XXX-XXX-XXX-XXX-XXX",
"embeds": [
{
"embedUrl": "https://analytics.zoho.com/slideshow-view/318*****/31804*****/90********?frameorigin=https://show.zoho.com,https://show.zohopublic.com",
"embedShapeId": "7FXXX-XXX-XXX-XXX-XXX"
}
]
}
],
"totalSlides": 4
}