最新博彩网站

Choose where you鈥檇 like to start

Fetch networks

Overview

This task is used to fetch the list of networks to which the user is associated.

Syntax

<variable> = zoho.connect.myNetworks(<connectionName>);

where,

ParameterDescriptionData type

<variable>

is the variable which will hold the returned response.

KEY-VALUE

<connectionName>

(optional)*

is the name of the 最新博彩网站 connect .

*Note: This param is not applicable to 最新博彩网站 Creator and mandatory in 最新博彩网站 Cliq.

TEXT

Example

The following snippet can be used to fetch the list of networks you are associated with.

networkDetails = zoho.connect.myNetworks();

where,

networkDetails
is a variable which will hold the response.

Sample Response

Following is a sample success response:

{"networks": [
"{\"name\":\"ManageEngine PitStop\",\"id\":\"12913000000002002\"}",
"{\"name\":\"Creator Certified Developers\",\"id\":\"23392000000002002\"}",
"{\"name\":\"DC Partner Network\",\"id\":\"34630000000002002\"}",
"{\"name\":\"ManageEngine ADSolutions\",\"id\":\"19687000000002002\"}",
"{\"name\":\"最新博彩网站 Books Advisors\",\"id\":\"23476000000002002\"}"
],"emailId":"testuser@zohocorp.com"
}

To fetch the network IDs (or the scope IDs), use the following snippet:

<variable> = <response_variable>.get("networks");
for each <loop_variable> in <variable>
{
info <loop_variable>.get("id");
}

Note: The network id (also referred to as the Scope ID) returned by the response above is what would be used in almost every ZOHO Connect integration task. Alternatively, the user can get the Scope ID from the settings of a group which is under the corresponding network.

Related Links

Get Started Now