- Introduction
- Getting Started
- Permissions
- Core Resources
- Channels
- Messages
- Teams
- Roles
- Users
- Todos
- Direct Messages
- Applications
- Reactions
- Attachments
- Voice
- Webhooks
- Blog
- Category
- Schemas
- Websockets
- Example Bot
- WebSocket event envelope
- Websocket events
- CHANNEL_CREATED
- CHANNEL_DELETED
- CHANNEL_UPDATED
- MESSAGE_SEND
- MESSAGE_UPDATED
- MESSAGE_DELETED
- MESSAGE_REACTION_ADDED
- MESSAGE_REACTION_REMOVED
- PRESENCE_UPDATE
- TEAM_ROLE_CREATED
- TEAM_ROLE_DELETED
- TEAM_ROLES_UPDATED
- TEAM_UPDATED
- TODO_ITEM_CREATED
- TODO_ITEM_DELETED
- TODO_ITEM_UPDATED
- USER_JOINED_TEAM
- USER_LEFT_TEAM
- USER_JOINED_VOICE_CHANNEL
- USER_LEFT_VOICE_CHANNEL
- USER_PROFILE_UPDATED
- USER_ROLE_ADDED
- USER_ROLE_REMOVED
- USER_UPDATED_VOICE_METADATA
- BLOG_CREATED
- BLOG_DELETED
- CATEGORIES_PRIORITY_UPDATED
- CATEGORY_UPDATED
- CATEGORY_DELETED
- CATEGORY_CREATED
- CHANNELS_PRIORITY_UPDATED
- Connecting via WebSocket
Get a Channel Message by Id
GET
https://api.teamly.one/api/v1/channels/{channelId}/messages/{messageId}
Request
Path Params
channelId
string
required
messageId
string
required
Header Params
Authorization
string
required
Default:
Bot {token}
Content-Type
string
required
Default:
application/json
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.teamly.one/api/v1/channels//messages/' \
--header 'Authorization;'
Responses
🟢200Success
application/json
Body
message
object (Message)
required
id
string
required
channelId
string
required
type
string
required
content
string | null
required
<= 2000 characters
attachments
array [object] | null
optional
<= 5 items
createdBy
object (User)
required
editedAt
string <date-time>
optional
replyTo
string
optional
embeds
array[object (Message Embed) {8}]
required
<= 5 items
emojis
array [object {1}]
optional
reactions
array [object {3}]
optional
nonce
string
optional
createdAt
string <date-time>
required
mentions
object
required
Example
{
"message": {
"id": "string",
"channelId": "string",
"type": "string",
"content": "string",
"attachments": [
{}
],
"createdBy": {
"id": "string",
"username": "string",
"subdomain": "string",
"profilePicture": null,
"banner": null,
"bot": false,
"presence": 0,
"badges": [],
"userStatus": {
"content": null,
"emojiId": null
},
"userRPC": {
"type": null,
"name": null,
"id": null,
"startedAt": null
},
"connections": [],
"createdAt": "CURRENT_TIMESTAMP",
"lastOnline": "CURRENT_TIMESTAMP",
"system": false
},
"editedAt": "2019-08-24T14:15:22Z",
"replyTo": "string",
"embeds": [
{
"title": "string",
"description": "string",
"url": "http://example.com",
"color": 0,
"author": {
"name": "string",
"icon_url": "http://example.com"
},
"thumbnail": {
"url": "http://example.com"
},
"image": {
"url": "http://example.com"
},
"footer": {
"text": "string",
"icon_url": "http://example.com"
}
}
],
"emojis": [
{
"emojiId": "string"
}
],
"reactions": [
{
"emojiId": "string",
"count": 0,
"users": [
{
"userId": "string",
"timestamp": "2019-08-24T14:15:22Z"
}
]
}
],
"nonce": "string",
"createdAt": "2019-08-24T14:15:22Z",
"mentions": {
"users": [
"string"
]
}
}
}
Modified at 2024-12-29 09:04:15