replaceOrganizationAuthDomains
Replace all auth domains for an organization.
replaceOrganizationAuthDomains(
input: OrganizationAuthDomainReplaceInput
): OrganizationAuthDomainReplacePayload!
Example
- Query
- Variables
- Response
mutation ($input: OrganizationAuthDomainReplaceInput) {
replaceOrganizationAuthDomains(input: $input) {
authDomains {
active
createdAt
domain
id
organizationId
}
organization {
considerUsersInactiveAfterDays
enforceSSOAccess
id
isFedramp
isHipaa
letsEncryptDisallowed
name
salesforceId
serviceStatus
slug
supportPackage
traffic
trafficType
}
}
}
{
"input": {
"domains": [
"domains"
],
"organizationId": 42
}
}
{
"data": {
"replaceOrganizationAuthDomains": {
"authDomains": [
{
"active": true,
"createdAt": "createdAt",
"domain": "domain",
"id": 42,
"organizationId": 42
}
],
"organization": {
"considerUsersInactiveAfterDays": 42,
"enforceSSOAccess": true,
"id": 42,
"isFedramp": true,
"isHipaa": true,
"letsEncryptDisallowed": true,
"name": "A name",
"salesforceId": "salesforceId",
"serviceStatus": "serviceStatus",
"slug": "slug",
"supportPackage": "supportPackage",
"traffic": 42,
"trafficType": "HTTP"
}
}
}
}
Arguments
replaceOrganizationAuthDomains.input ● OrganizationAuthDomainReplaceInput input common
The organization and domains to store.
Type
OrganizationAuthDomainReplacePayload object common
The result of replacing an organization's auth domains.