Channel Details

This is the request for details of a channel.

GET /api/cowork/teams/<teamID>/channels/<channelID>

Returns the details of the given channel, denoted by the channelID.

{
    "channelId":      "<ID of the channel>",
    "teamId":         "<ID of the team>",
    "displayName":    "<Name of the channel>",
    "description":    "A description of the channel",
}
RESPONSE Fields Value Type Description
channelId String The GUID of the channel, used for details and further operations
teamId String The GUID of the team this channel is associated with
displayName String The display name value of the channel, as displayed in the interface
description String A description of the channel

Example Request

# Request
# Use user:password for authorization
GET /api/cowork/admin/teams/3n1ytbwme7ngfyn9g9guwwurt/channels/3y8kdto0lnx3ig3mshwvrb9x7 HTTP/1.1
Accept: */*
Authorization: Bearer VGhpcyBpcyBqdXN0IGEgZGVtbyBhY2Nlc3MgdG9rZW4u
 
# Response
HTTP/1.1 200 OK
{
    "channelId": "3y8kdto0lnx3ig3mshwvrb9x7",
    "teamId": "3n1ytbwme7ngfyn9g9guwwurt",
    "displayName": "Third Channel",
    "description": "",
}