Skip to main content
1-Visitor
August 24, 2016
Solved

Get all networks name without using REST API

  • August 24, 2016
  • 1 reply
  • 1462 views

Hi all,

Do you know a TWX service to get all the networks name ? Thank you in advance.

Best answer by katte

You can make use of 'GetEntityList' service with Network type and retrieve all existing networks.

var params = {

  type: "Network" /* STRING */

};

// result: INFOTABLE

var result = Resources["EntityServices"].GetEntityList(params);

-Giri

1 reply

katte5-Regular MemberAnswer
5-Regular Member
August 24, 2016

You can make use of 'GetEntityList' service with Network type and retrieve all existing networks.

var params = {

  type: "Network" /* STRING */

};

// result: INFOTABLE

var result = Resources["EntityServices"].GetEntityList(params);

-Giri