cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X

Get all networks name without using REST API

qngo
5-Regular Member

Get all networks name without using REST API

Hi all,

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

1 ACCEPTED SOLUTION

Accepted Solutions
katte
1-Newbie
(To:qngo)

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

View solution in original post

1 REPLY 1
katte
1-Newbie
(To:qngo)

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

Top Tags