v5

latestOpenAPI 3.1.02026-07-31151195455.5 KB
message-channels

Creates a MessageChannel objects.

post/message-channels

Request body

third_party_provider'SLACK' required

The third party provider of the message channel.

remote_idstring required

The remote ID of the message channel

Example request

{
  "third_party_provider": "SLACK",
  "remote_id": "C03FJR97276"
}

Response

The message channel that was created.

message_channel_idstring uuid required

The ID of the message channel.

third_party_provider'SLACK'

The third party provider of the message channel.

remote_idstring

The remote ID of the message channel

namestring

The name of the message channel.

is_privateboolean

A bool representing whether or not the message channel is private.

Example response

{
  "message_channel_id": "6670617d-e72a-47f5-a84c-693817ab4860",
  "third_party_provider": "SLACK",
  "remote_id": "C03FJR97276",
  "name": "api-team-audit-channel",
  "is_private": false
}