companyUpdate

Graphql fields and variables for the companyUpdate mutation

Update company details

Scope required: admin:write

For a complete list of input attributes see the CompanyAttributes type

mutation companyUpdate ($attributes: CompanyAttributes!) {
  companyUpdate (attributes: $attributes) {
      company {
        createdAt
        defaultRoleId
        inactivityTimeout
        migrationMode
        name
        outboundEmailsEnabled
        samlIssuer
        samlSignatureCertificate
        samlSsoUrl
        ssoEnabled
        ssoGoogleEnabled
        updatedAt
        whitelistedOrigin
      }
      errors
  }
}

Arguments

{
  "attributes": {
    "name": "",
    "inactivityTimeout": 123,
    "ssoEnabled": true,
    "ssoGoogleEnabled": true,
    "samlSsoUrl": "",
    "samlIssuer": "",
    "samlSignatureCertificate": "",
    "defaultRoleId": "456123",
    "ssoMode": "SsoMode",
    "baseCurrencyId": "",
    "outboundEmailsEnabled": true,
    "migrationMode": true,
    "whitelistedOrigin": ""
  }
}
Name
Type
Description

Response

Name
Type
Description

company

errors

String

Last updated

Was this helpful?