Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
Is there a way to create organization branches via scripting?
I know I can create top level organization via following snippet:
var params = {
topOUName: "customer"/* STRING */,
name: "customer"/* STRING */,
description: undefined /* STRING */,
topOUDescription: undefined /* STRING */,
tags: undefined /* TAGS */
};
// no return
Resources["EntityServices"].CreateOrganization(params);
But is there a way to create branches also via script? See attached picture (branch1 & branch2).
Solved! Go to Solution.
You can use this service:
Organizations["MyOrg"].AddOrganizationalUnit({
parentName: undefined /* STRING */,
name: undefined /* STRING */
});
Hope that helps
--Nick
You can use this service:
Organizations["MyOrg"].AddOrganizationalUnit({
parentName: undefined /* STRING */,
name: undefined /* STRING */
});
Hope that helps
--Nick