Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. 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 !