Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hi,
I am creating a thing using code and then I want to add that thing into a network using code.Any idea how to do it ?
Thanks
Hi Digital, could you please help me understand further on your requirement of adding to network? Which network are you referring to?
You can add your thing to the network using the AddConnection service:
var params = {
from: "ParentThingName" /* STRING */,
to: "ChildThingName" /* STRING */,
connectionType: "Contains" /* STRING */
};
// no return
Networks["NetworkName"].AddConnection(params);
Edit: If it is a top-level connection, leave the from parameter as undefined.
Thanks James it was really helpful !