TagoIO SDK for JavaScript and TypeScript
    Preparing search index...

    Class Networks

    Hierarchy

    Index

    Constructors

    Methods

    • Parameters

      • networkID: string

      Returns Promise<string>

      Deletes a network from the application.

      If receive an error "Authorization Denied", check policy in Access Management.

      const resources = new Resources({ token: "YOUR-PROFILE-TOKEN" });
      const result = await resources.integration.networks.delete("network-id-123");
      console.log(result); // Successfully Removed
    • Parameters

      Returns Promise<string>

      Modifies an existing network's properties.

      const resources = new Resources({ token: "YOUR-PROFILE-TOKEN" });
      const result = await resources.integration.networks.edit("network-id-123", { name: "Updated Network" });
      console.log(result); // Network Successfully Updated