Beam
Open Beam
Messages

React to a message

Current documentation

Land a real tapback on a contact's message.

POST https://beam.aisync.link/v1/reactions

FieldTypeDescription
tostring, requiredThe contact's phone number.
tapbackstring, requiredlove, like, dislike, laugh, emphasize, or question.
messagestring, requiredThe exact text of the contact's message you are reacting to. Beam finds their latest message matching it.
actionstring, optionaladd (default) or remove.
curl -X POST https://beam.aisync.link/v1/reactions \
  -H "x-api-key: YOUR_WORKSPACE_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "+15551234567",
    "tapback": "love",
    "message": "sounds great, lets do it"
  }'