Get All Datalinks - Zoho Show
Note: This task is applicable to all services except Zoho Creator.
Overview
This task is used to fetch all data link (Data Field) IDs along with their metadata from a presentation.
Syntax
<response> = zoho.show.getAllDataLinks(<rid>, <connection>);
Scope
ZohoShow.showdocslist.READ
Parameter
| Parameter | Description | Data type |
| <response> | Variable that holds data link details. | KEY-VALUE |
| <rid> | ID of the presentation Note:
https://show.zoho.in/show/open/{rid} | TEXT |
| <connection> | Name of the Zoho Show connection | CONNECTION |
Example
The following script fetches all data links from a presentation.
rid = "xfXXXXXX"; response = zoho.show.getAllDataLinks(rid,"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
[
{
"meta": {
"dataType": "STRING",
"name": "Name"
},
"key": "82XXX-XXX-XXX-XXX-XXX",
"label": "Name (STRING)"
},
{
"meta": {
"dataType": "STRING",
"name": "Address"
},
"key": "DEXXX-XXX-XXX-XXX-XXX",
"label": "Address (STRING)"
}
]
{
"meta": {
"dataType": "STRING",
"name": "Name"
},
"key": "82XXX-XXX-XXX-XXX-XXX",
"label": "Name (STRING)"
},
{
"meta": {
"dataType": "STRING",
"name": "Address"
},
"key": "DEXXX-XXX-XXX-XXX-XXX",
"label": "Address (STRING)"
}
]