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

ParameterDescriptionData type
<response>Variable that holds data link details.KEY-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
<connection>Name of the Zoho Show connectionCONNECTION

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)"
  }
]