diff --git a/src/content/docs/accounts/accounts-billing/account-structure/multi-tenancy/org-creation.mdx b/src/content/docs/accounts/accounts-billing/account-structure/multi-tenancy/org-creation.mdx index 33dd6caefb3..742e95f86dc 100644 --- a/src/content/docs/accounts/accounts-billing/account-structure/multi-tenancy/org-creation.mdx +++ b/src/content/docs/accounts/accounts-billing/account-structure/multi-tenancy/org-creation.mdx @@ -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 } @@ -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 } @@ -149,4 +149,4 @@ Use the following query to keep track of your managed organizations: \ No newline at end of file +/>