Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update org-creation.mdx #18900

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ When you create an organization in a high-touch structure, you will often want t

```graphql
mutation {
createOrganization(
customerId: "CC-1234567890",
organization!: {name!: "New Customer Organization Name"},
sharedAccount: {accountId!: 1234567, limitingRoleId: 325}
organizationCreate(
customerId: "CC-1234567890"
organization: {name: "New Customer Organization Name"}
sharedAccount: {accountId: 1234, limitingRoleId: 0}
) {
jobId
}
Expand All @@ -99,10 +99,10 @@ This mutation creates an organization and a new managed account:

```graphql
mutation {
createOrganization(
customerId: "CC-1234567890",
organization!: {name!: "New Customer Organization Name"},
newManagedAccount: {name: "New Managed Account Name", regionCode: "eu01"},
organizationCreate(
customerId: "CC-123456789"
newManagedAccount: {name: "New Managed Account Name", regionCode: EU01}
organization: {name: "New Organizanization Name"}
) {
jobId
}
Expand Down Expand Up @@ -149,4 +149,4 @@ Use the following query to keep track of your managed organizations:
<UserJourneyControls
previousStep={{path: "/docs/accounts/accounts-billing/account-structure/multi-tenancy/intro-to-multi-tenancy", title: "Return to start", body: "Introduction to multi-tenancy"}}
nextStep={{path: "/docs/accounts/accounts-billing/account-structure/multi-tenancy/delegated-administration", title: "Step 2", body: "Manage users and access"}}
/>
/>
Loading