Mutation
mutation DeleteThreadChannelAssociation($input: DeleteThreadChannelAssociationInput!) {
deleteThreadChannelAssociation(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"threadChannelAssociationId": "id"
}
}Response
{
"data": {
"deleteThreadChannelAssociation": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Mutations
deleteThreadChannelAssociation
Removes a thread channel association, unlinking the connected Slack channel from its associated company or tenant. Requires the threadChannelAssociation:delete permission.
MUTATION
deleteThreadChannelAssociation(input: DeleteThreadChannelAssociationInput!): DeleteThreadChannelAssociationOutput!Arguments
input
required
error
Mutation
mutation DeleteThreadChannelAssociation($input: DeleteThreadChannelAssociationInput!) {
deleteThreadChannelAssociation(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"threadChannelAssociationId": "id"
}
}Response
{
"data": {
"deleteThreadChannelAssociation": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Was this page helpful?

