Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! 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 !