Skip to main content
1-Visitor
February 4, 2017
Solved

How to create a suborganization via service??

  • February 4, 2017
  • 1 reply
  • 1226 views

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?

Best answer by wposner-2

Figured it out:

var params = {

    parentName: "suborg2" /* STRING */,

  name: "suborg2" /* STRING */,

};

Organizations["suborg1"].AddOrganizationalUnit(params);

1 reply

wposner-21-VisitorAuthorAnswer
1-Visitor
February 4, 2017

Figured it out:

var params = {

    parentName: "suborg2" /* STRING */,

  name: "suborg2" /* STRING */,

};

Organizations["suborg1"].AddOrganizationalUnit(params);