https://help.tago.io/portal/en/kb/articles/125-network-integration Network Integration
Optional
queryObj: NetworkQueryhttps://help.tago.io/portal/en/kb/articles/125-network-integration Network Integration
If receive an error "Authorization Denied", check policy Network / Access in Access Management.
const result = await Resources.integration.networks.list({
page: 1,
fields: ["id", "name"],
amount: 10,
orderBy: ["name", "asc"]
});
console.log(result); // [ { id: 'network-id-123', name: 'Network Test' } ]
https://help.tago.io/portal/en/kb/articles/468-creating-a-network-integration#Tokens_and_getting_the_devices Tokens and Getting the Devices
https://help.tago.io/portal/en/kb/articles/468-creating-a-network-integration#Tokens_and_getting_the_devices Tokens and Getting the Devices
Optional
queryObj: ListTokenQueryhttps://help.tago.io/portal/en/kb/articles/468-creating-a-network-integration#Tokens_and_getting_the_devices Tokens and Getting the Devices
Description
Creates a new network in the application.
See
https://help.tago.io/portal/en/kb/articles/468-creating-a-network-integration Creating a Network Integration
Example