Mutation
mutation DeleteMyServiceAuthorization($input: DeleteMyServiceAuthorizationInput!) {
deleteMyServiceAuthorization(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"serviceAuthorizationId": "id"
}
}Response
{
"data": {
"deleteMyServiceAuthorization": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Mutations
deleteMyServiceAuthorization
Delete the current user’s personal service authorization credentials (currently supported for Jira only). This removes the user’s personal OAuth token but leaves the workspace-level Jira authorization intact. The primary Jira token cannot be deleted; another user must first become the primary before this user’s token can be removed.
MUTATION
deleteMyServiceAuthorization(input: DeleteMyServiceAuthorizationInput!): DeleteMyServiceAuthorizationOutput!Arguments
input
required
error
Mutation
mutation DeleteMyServiceAuthorization($input: DeleteMyServiceAuthorizationInput!) {
deleteMyServiceAuthorization(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"serviceAuthorizationId": "id"
}
}Response
{
"data": {
"deleteMyServiceAuthorization": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Was this page helpful?

