Skip to content

updateO365OrgCustomName

Update the custom name for an O365 Organization.

Arguments

Argument Type Description
input (required) UpdateO365OrgCustomNameInput! Config for updating an O365 Org custom name.

Returns

UpdateO365OrgCustomNameReply!

Sample

mutation UpdateO365OrgCustomName($input: UpdateO365OrgCustomNameInput!) {
  updateO365OrgCustomName(input: $input) {
    customName
    orgUuid
  }
}
{
  "input": {
    "customName": "example-string",
    "orgUuid": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "updateO365OrgCustomName": {
      "customName": "example-string",
      "orgUuid": "00000000-0000-0000-0000-000000000000"
    }
  }
}