Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
Hi all,
Do you know a TWX service to get all the networks name ? Thank you in advance.
Solved! Go to Solution.
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
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