Skip to content
Get started

Log email reply signals

POST/users/best-email/signal/reply

Track when users reply to emails. This endpoint logs reply signals for analytics purposes. Does not consume credits. Requires RAW service.

Body ParametersExpand Collapse
githubIds: array of string

Array of GitHub node IDs for users who replied (1-100)

emailReplyBody: optional string

The body content of the user's reply email

ReturnsExpand Collapse
count: number

Number of reply signals logged

success: boolean

Whether the signal was logged successfully

Log email reply signals
curl https://api.bountylab.io/v2/users/best-email/signal/reply \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $BOUNTYLAB_API_KEY" \
    -d '{
          "githubIds": [
            "MDQ6VXNlcjU4MzIzMQ=="
          ]
        }'
{
  "count": 1,
  "success": true
}
Returns Examples
{
  "count": 1,
  "success": true
}