Mutation
mutation DeleteEscalationPath($input: DeleteEscalationPathInput!) {
deleteEscalationPath(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"escalationPathId": "id"
}
}Response
{
"data": {
"deleteEscalationPath": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Mutations
deleteEscalationPath
Permanently deletes an escalation path by ID. Returns an error if the escalation path does not exist.
Threads that were attached to this escalation path will lose their escalation path association.
Requires the escalationPath:delete permission.
MUTATION
deleteEscalationPath(input: DeleteEscalationPathInput!): DeleteEscalationPathOutput!Arguments
input
required
Returns
error
Mutation
mutation DeleteEscalationPath($input: DeleteEscalationPathInput!) {
deleteEscalationPath(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"escalationPathId": "id"
}
}Response
{
"data": {
"deleteEscalationPath": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Was this page helpful?

