Skip to main content
DELETE
/
threads
/
{threadId}
/
messages
/
{messageId}
/
reactions
/
reactions
Remove reaction
curl --request DELETE \
  --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 remove the reaction from.

Body

application/json
emoji
string
required

The emoji reaction to remove.

Examples:

"❤️"

"😂"

"👍"

Response

200 - application/json

OK

success
boolean
required
messageId
string
required