Mutation
mutation DeleteCustomDomain($input: DeleteCustomDomainInput!) {
deleteCustomDomain(input: $input) {
clientMutationId
deletedId
errors
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"deleteCustomDomain": {
"clientMutationId": "string",
"deletedId": "id",
"errors": [
"string"
]
}
}
}Mutations
deleteCustomDomain
Remove the Network’s custom domain configuration. Tears down every registered custom domain and restores the default Mighty domain — not just the domain the ID references
Required scope: host:write:network_integrations
MUTATION
deleteCustomDomain(input: DeleteCustomDomainInput!): DeleteCustomDomainPayloadArguments
input
required
Parameters for DeleteCustomDomain
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
deletedId
ID
errors
[String!]!
Mutation
mutation DeleteCustomDomain($input: DeleteCustomDomainInput!) {
deleteCustomDomain(input: $input) {
clientMutationId
deletedId
errors
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"deleteCustomDomain": {
"clientMutationId": "string",
"deletedId": "id",
"errors": [
"string"
]
}
}
}