Mutation
mutation DeleteServiceAuthorization($input: DeleteServiceAuthorizationInput!) {
deleteServiceAuthorization(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"serviceAuthorizationId": "id"
}
}Response
{
"data": {
"deleteServiceAuthorization": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Mutations
deleteServiceAuthorization
Delete a workspace-level service authorization and revoke the associated credentials. Any import job definitions linked to this authorization are also disabled. This operation is permanent; to reconnect the service, start a new authorization flow.
MUTATION
deleteServiceAuthorization(input: DeleteServiceAuthorizationInput!): DeleteServiceAuthorizationOutput!Arguments
input
required
Returns
error
Mutation
mutation DeleteServiceAuthorization($input: DeleteServiceAuthorizationInput!) {
deleteServiceAuthorization(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"serviceAuthorizationId": "id"
}
}Response
{
"data": {
"deleteServiceAuthorization": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Was this page helpful?

