Skip to main content
POST
/
threads
/
{threadId}
/
messages
/
{messageId}
/
reactions
/
reactions
Add reaction
curl --request POST \
  --url https://inboxapp.com/api/v1/threads/{threadId}/messages/{messageId}/reactions/reactions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "emoji": "<string>"
}
'
{
  "success": true,
  "messageId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

threadId
string
required

The ID of the thread containing the message.

messageId
string
required

The ID of the message to react to.

Body

application/json
emoji
string
required

The emoji to react with.

Examples:

"❤️"

"😂"

"👍"

Response

200 - application/json

OK

success
boolean
required
messageId
string
required