Chat Messages
The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the type of the channel
index of the first item to return
0maximum number of items to return
25the list of messages, newest first
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The name of the author as it was submitted with the event. Only set when authorType is EXTERNAL.
Set to true when the message was added while resolving the alert.
Set to true when the message has thread replies.
GET /api/chat-channels/{channelId}/messages?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
the list of messages, newest first
[
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"externalCreatorName": "text",
"resolveComment": true,
"thread": true,
"threadMessageCount": 1,
"lastReplyDate": "2026-01-01T00:00:00.000Z",
"lastReplyAuthorType": "USER",
"lastReplyAuthorId": 1,
"lastReplyBotName": "text"
}
]Create a new message in the specified channel. The author of the message is the user the API key or access token belongs to.
The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the type of the channel
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The name of the author as it was submitted with the event. Only set when authorType is EXTERNAL.
Set to true when the message was added while resolving the alert.
Set to true when the message has thread replies.
the created message
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The name of the author as it was submitted with the event. Only set when authorType is EXTERNAL.
Set to true when the message was added while resolving the alert.
Set to true when the message has thread replies.
POST /api/chat-channels/{channelId}/messages?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 39
{
"content": "text",
"contentType": "TEXT"
}the created message
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"externalCreatorName": "text",
"resolveComment": true,
"thread": true,
"threadMessageCount": 1,
"lastReplyDate": "2026-01-01T00:00:00.000Z",
"lastReplyAuthorType": "USER",
"lastReplyAuthorId": 1,
"lastReplyBotName": "text"
}The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the id of the message
the type of the channel
the message
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The name of the author as it was submitted with the event. Only set when authorType is EXTERNAL.
Set to true when the message was added while resolving the alert.
Set to true when the message has thread replies.
GET /api/chat-channels/{channelId}/messages/{id}?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
the message
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"externalCreatorName": "text",
"resolveComment": true,
"thread": true,
"threadMessageCount": 1,
"lastReplyDate": "2026-01-01T00:00:00.000Z",
"lastReplyAuthorType": "USER",
"lastReplyAuthorId": 1,
"lastReplyBotName": "text"
}The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the id of the message
the type of the channel
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The name of the author as it was submitted with the event. Only set when authorType is EXTERNAL.
Set to true when the message was added while resolving the alert.
Set to true when the message has thread replies.
the updated message
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The name of the author as it was submitted with the event. Only set when authorType is EXTERNAL.
Set to true when the message was added while resolving the alert.
Set to true when the message has thread replies.
PUT /api/chat-channels/{channelId}/messages/{id}?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 39
{
"content": "text",
"contentType": "TEXT"
}the updated message
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"externalCreatorName": "text",
"resolveComment": true,
"thread": true,
"threadMessageCount": 1,
"lastReplyDate": "2026-01-01T00:00:00.000Z",
"lastReplyAuthorType": "USER",
"lastReplyAuthorId": 1,
"lastReplyBotName": "text"
}Delete the message with the specified id. Messages are deleted softly: the message remains in the list with `deleted` set to true and its content replaced by a placeholder. Only the author of a message may delete it.
The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the id of the message
the type of the channel
the deleted message
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The name of the author as it was submitted with the event. Only set when authorType is EXTERNAL.
Set to true when the message was added while resolving the alert.
Set to true when the message has thread replies.
DELETE /api/chat-channels/{channelId}/messages/{id}?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
the deleted message
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"externalCreatorName": "text",
"resolveComment": true,
"thread": true,
"threadMessageCount": 1,
"lastReplyDate": "2026-01-01T00:00:00.000Z",
"lastReplyAuthorType": "USER",
"lastReplyAuthorId": 1,
"lastReplyBotName": "text"
}Add a reaction of the authenticated user to the message with the specified id. Reacting twice with the same code, or exceeding the limit of reaction codes per message, answers 400.
The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the id of the message
the type of the channel
The emoji of the reaction, written as its name in lower case with underscores, e.g. thumbs_up, red_heart, eyes or party_popper. Use the same spelling as the ilert apps, so that the reactions of a message stay together.
thumbs_upthe updated message
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The name of the author as it was submitted with the event. Only set when authorType is EXTERNAL.
Set to true when the message was added while resolving the alert.
Set to true when the message has thread replies.
POST /api/chat-channels/{channelId}/messages/{id}/reactions?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 20
{
"code": "thumbs_up"
}the updated message
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"externalCreatorName": "text",
"resolveComment": true,
"thread": true,
"threadMessageCount": 1,
"lastReplyDate": "2026-01-01T00:00:00.000Z",
"lastReplyAuthorType": "USER",
"lastReplyAuthorId": 1,
"lastReplyBotName": "text"
}The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the id of the message
the code of the reaction to remove, e.g. thumbs_up
thumbs_upthe type of the channel
the updated message
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The name of the author as it was submitted with the event. Only set when authorType is EXTERNAL.
Set to true when the message was added while resolving the alert.
Set to true when the message has thread replies.
DELETE /api/chat-channels/{channelId}/messages/{id}/reactions/{code}?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
the updated message
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"externalCreatorName": "text",
"resolveComment": true,
"thread": true,
"threadMessageCount": 1,
"lastReplyDate": "2026-01-01T00:00:00.000Z",
"lastReplyAuthorType": "USER",
"lastReplyAuthorId": 1,
"lastReplyBotName": "text"
}The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the id of the message that opens the thread
the type of the channel
index of the first item to return
0maximum number of items to return
25the list of thread replies
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The id of the message this reply belongs to.
GET /api/chat-channels/{channelId}/messages/{threadId}/thread-replies?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
the list of thread replies
[
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"threadId": 1
}
]Reply to the specified message. The first reply turns the message into a thread. The author of the reply is the user the API key or access token belongs to.
The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the id of the message that opens the thread
the type of the channel
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The id of the message this reply belongs to.
the created thread reply
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The id of the message this reply belongs to.
POST /api/chat-channels/{channelId}/messages/{threadId}/thread-replies?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 39
{
"content": "text",
"contentType": "TEXT"
}the created thread reply
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"threadId": 1
}The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the id of the message that opens the thread
the id of the thread reply
the type of the channel
the thread reply
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The id of the message this reply belongs to.
GET /api/chat-channels/{channelId}/messages/{threadId}/thread-replies/{id}?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
the thread reply
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"threadId": 1
}The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the id of the message that opens the thread
the id of the thread reply
the type of the channel
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The id of the message this reply belongs to.
the updated thread reply
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The id of the message this reply belongs to.
PUT /api/chat-channels/{channelId}/messages/{threadId}/thread-replies/{id}?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 39
{
"content": "text",
"contentType": "TEXT"
}the updated thread reply
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"threadId": 1
}Delete the thread reply with the specified id. Thread replies are deleted softly: the reply remains in the list with `deleted` set to true and its content replaced by a placeholder. Only the author of a thread reply may delete it.
The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the id of the message that opens the thread
the id of the thread reply
the type of the channel
the deleted thread reply
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The id of the message this reply belongs to.
DELETE /api/chat-channels/{channelId}/messages/{threadId}/thread-replies/{id}?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
the deleted thread reply
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"threadId": 1
}Add a reaction of the authenticated user to the thread reply with the specified id. Reacting twice with the same code, or exceeding the limit of reaction codes per thread reply, answers 400.
The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the id of the message that opens the thread
the id of the thread reply
the type of the channel
The emoji of the reaction, written as its name in lower case with underscores, e.g. thumbs_up, red_heart, eyes or party_popper. Use the same spelling as the ilert apps, so that the reactions of a message stay together.
thumbs_upthe updated thread reply
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The id of the message this reply belongs to.
POST /api/chat-channels/{channelId}/messages/{threadId}/thread-replies/{id}/reactions?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 20
{
"code": "thumbs_up"
}the updated thread reply
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"threadId": 1
}The Bearer API key of your user more info.
the id of the channel the messages belong to, for the channel type ALERT this is the id of the alert
the id of the message that opens the thread
the id of the thread reply
the code of the reaction to remove, e.g. thumbs_up
thumbs_upthe type of the channel
the updated thread reply
Who wrote the message: a user of the account, an ilert bot, or an external author, e.g. when the message was submitted with an event.
The id of the user who wrote the message. Only set when authorType is USER.
The name of the bot that wrote the message. Only set when authorType is BOT.
The text of the message. Longer content is truncated.
The type of the content, currently only TEXT is supported.
How the message is meant to be rendered. Messages written by users always carry the style DEFAULT. ilert uses further styles internally, e.g. for the intermediate steps of its AI agents. If you display messages in your own interface, only render those with the style DEFAULT, otherwise internal styles may show up as regular messages.
Set to true once the message has been deleted. The content is replaced by a placeholder.
The id of the message this reply belongs to.
DELETE /api/chat-channels/{channelId}/messages/{threadId}/thread-replies/{id}/reactions/{code}?channel-type=ALERT HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
the updated thread reply
{
"id": 1,
"created": "2026-01-01T00:00:00.000Z",
"updated": "2026-01-01T00:00:00.000Z",
"authorType": "USER",
"authorId": 1,
"botName": "text",
"content": "text",
"contentType": "TEXT",
"messageStyle": "DEFAULT",
"edited": true,
"deleted": true,
"reactions": [
{
"code": "thumbs_up",
"count": 1,
"users": [
1
],
"bots": [
1
]
}
],
"threadId": 1
}Last updated
Was this helpful?