> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.messageblue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.messageblue.ai/_mcp/server.

# Inbound reaction (tapback) received

POST 

Delivered to the same `inboundWebhookUrl` when a contact reacts to a message with a tapback. Identify it by `type`, and use `originalMessageGuid` to find the message being reacted to.

Reference: https://docs.messageblue.ai/api-reference/webhooks/inbound-reaction

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: swagger
  version: 1.0.0
paths: {}
webhooks:
  subpackage_webhooks.inboundReaction:
    post:
      operationId: subpackage_webhooks.inboundReaction
      summary: Inbound reaction (tapback) received
      description: >-
        Delivered to the same `inboundWebhookUrl` when a contact reacts to a
        message with a tapback. Identify it by `type`, and use
        `originalMessageGuid` to find the message being reacted to.
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InboundReactionEvent'
components:
  schemas:
    InboundReactionEventType:
      type: string
      enum:
        - inbound_reaction
      title: InboundReactionEventType
    InboundReactionEvent:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/InboundReactionEventType'
        messageId:
          type: string
        from:
          type:
            - string
            - 'null'
        to:
          type:
            - string
            - 'null'
        outbound:
          type: boolean
        iMessageNumber:
          type:
            - string
            - 'null'
        participants:
          type:
            - array
            - 'null'
          items:
            type: string
        chatGuid:
          type:
            - string
            - 'null'
        groupId:
          type:
            - string
            - 'null'
        messageGuid:
          type:
            - string
            - 'null'
        originalMessageGuid:
          type:
            - string
            - 'null'
          description: GUID of the message being reacted to.
        originalText:
          type:
            - string
            - 'null'
        reaction:
          type:
            - string
            - 'null'
          description: e.g. love, like, dislike, laugh, emphasize, question.
        timestamp_ms:
          type: integer
          format: int64
        accountId:
          type:
            - string
            - 'null'
      description: >-
        Delivered to your inbound webhook URL when a contact reacts (tapback) to
        a message.
      title: InboundReactionEvent

```