Adds an emoji reaction to a message. Each user can react once with each emoji. Cannot be used from unclaimed accounts outside personal notes. Returns 204 No Content on success.
curl --request PUT \
--url https://api.fluxer.app/v1/channels/{channel_id}/messages/{message_id}/reactions/{emoji}/@me \
--header 'Authorization: <api-key>'{
"code": "ACCESS_DENIED",
"message": "<string>",
"errors": [
{
"path": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The ID of the channel
The ID of the message
The emoji
The session ID for synchronization
No Content
curl --request PUT \
--url https://api.fluxer.app/v1/channels/{channel_id}/messages/{message_id}/reactions/{emoji}/@me \
--header 'Authorization: <api-key>'{
"code": "ACCESS_DENIED",
"message": "<string>",
"errors": [
{
"path": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}