getChannel

abstract suspend fun getChannel(input: GetChannelRequest): GetChannelResponse

Displays information about a channel in a private re:Post.

Samples


fun main() { 
   //sampleStart 
   // GetChannel
val resp = repostspaceClient.getChannel {
    spaceId = "SP1234567890abcdefghijkl"
    channelId = "WS1234567890abcdefghijkl"
} 
   //sampleEnd
}