curl --request GET \
--url http://localhost:8091/api/servers/{serverID}/channels/{channelID} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"name": "<string>",
"displayName": "<string>",
"topic": "<string>",
"isDm": true,
"isPrivate": true,
"archived": true,
"createdBy": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"position": 123,
"serverId": "<string>",
"memberCount": 123,
"groupId": "<string>"
}
}Returns a single channel by ID.
curl --request GET \
--url http://localhost:8091/api/servers/{serverID}/channels/{channelID} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"name": "<string>",
"displayName": "<string>",
"topic": "<string>",
"isDm": true,
"isPrivate": true,
"archived": true,
"createdBy": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"position": 123,
"serverId": "<string>",
"memberCount": 123,
"groupId": "<string>"
}
}