Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
Does anyone know how to achieve this?
The following code always only seems to create a top level org even though there is an org called MainOrg that I want this new org to exist under:
var params = {
topOUName: "MainOrg" /* STRING */,
name: "suborg1" /* STRING */,
description: "suborg1 /* STRING */,
topOUDescription: undefined /* STRING */,
tags: /* TAGS */
};
Resources["EntityServices"].CreateOrganization(params);
Further, how would I create an org two levels down? So if I have MainOrg and I add suborg1, how do I add a new org underneath suborg1?
Solved! Go to Solution.
Figured it out:
var params = {
parentName: "suborg2" /* STRING */,
name: "suborg2" /* STRING */,
};
Organizations["suborg1"].AddOrganizationalUnit(params);
Figured it out:
var params = {
parentName: "suborg2" /* STRING */,
name: "suborg2" /* STRING */,
};
Organizations["suborg1"].AddOrganizationalUnit(params);