Mutation
mutation BulkJoinSlackChannels($input: BulkJoinSlackChannelsInput!) {
bulkJoinSlackChannels(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"integrationId": "id"
}
}Response
{
"data": {
"bulkJoinSlackChannels": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Mutations
bulkJoinSlackChannels
Instructs the Plain Slack bot to join all Slack channels it has access to for the given workspace Slack channel integration. Use this after first installing the integration to connect existing channels.
MUTATION
bulkJoinSlackChannels(input: BulkJoinSlackChannelsInput!): BulkJoinSlackChannelsOutput!Arguments
input
required
Returns
error
Mutation
mutation BulkJoinSlackChannels($input: BulkJoinSlackChannelsInput!) {
bulkJoinSlackChannels(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"integrationId": "id"
}
}Response
{
"data": {
"bulkJoinSlackChannels": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Was this page helpful?

