https://help.tago.io/portal/en/kb/articles/468-creating-a-network-integration Creating a Network Integration
Deletes a network from the application.
Modifies an existing network's properties.
Retrieves detailed information about a specific network.
https://help.tago.io/portal/en/kb/articles/125-network-integration Network Integration
Lists all networks from the application with pagination support.
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' } ]
Creates a new token for a network.
https://help.tago.io/portal/en/kb/articles/468-creating-a-network-integration#Tokens_and_getting_the_devices Tokens and Getting the Devices
Deletes a network token.
https://help.tago.io/portal/en/kb/articles/468-creating-a-network-integration#Tokens_and_getting_the_devices Tokens and Getting the Devices
Lists all tokens for a network with pagination support.
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
Creates a new network in the application.