For the complete documentation index, see llms.txt. This page is also available as Markdown.

tenantUpdate

Graphql fields and variables for the tenantUpdate mutation

Update an tenant

Scope required: platform:write

For a complete list of input attributes see the TenantAttributes type

mutation tenantUpdate ($id: ID!, $code: String!, $attributes: TenantAttributes!) {
  tenantUpdate (id: $id, code: $code, attributes: $attributes) {
      errors
      tenant {
        accountId
        code
        createdAt
        customFieldsData
        hasCustomFields
        id
        lastLogin
        lastSuccessfulWebhookAt
        lastWebhookStatus
        name
        platformId
        subdomain
        tenantUuid
        updatedAt
        userCount
        utilizationMetrics
      }
  }
}

Arguments

Name
Type
Description

id

ID

code

String

Response

Name
Type
Description

errors

List (String)

tenant

Last updated

Was this helpful?