Skip to content

Commit

Permalink
Merge pull request #18900 from hunterbeezley/patch-8
Browse files Browse the repository at this point in the history
Update org-creation.mdx
  • Loading branch information
rhetoric101 authored Oct 16, 2024
2 parents 1b1aabb + 27854a9 commit a239791
Showing 1 changed file with 9 additions and 9 deletions.
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"}}
/>
/>

0 comments on commit a239791

Please sign in to comment.