Skip to main content
POST
/
api
/
webhook
/
outreach
Handle outreach webhook (backwards compatibility)
curl --request POST \
  --url https://your-instance.example.com/api/webhook/outreach \
  --header 'Content-Type: application/json' \
  --data '
{
  "apiKey": "tk_live_5f7b1c2e8a1d4e0012c3b4a5",
  "contact": {
    "firstName": "Alex",
    "lastName": "Morgan",
    "phoneNumber": "+14165550100",
    "email": "alex@example.com"
  },
  "automationId": "5f7b1c2e8a1d4e0012c3b4a5"
}
'
{
  "success": true,
  "message": "Data processed successfully",
  "data": {
    "contactId": "64b2c3d4e5f60012345678aa",
    "applicationId": "64d2f9c5e8a1d4e001a0b1c2",
    "conversationId": "64d2f9c5e8a1d4e001a0b1c3",
    "mergeOutcome": "created"
  }
}

Body

application/json

Arbitrary outreach payload forwarded to outreach trigger handler

Response

Outreach processed. Same shape as POST /api/outreach — the legacy webhook route is a thin alias.

Returned by POST /api/outreach. data carries resolved IDs the caller may need to follow up.

success
enum<boolean>
required
Available options:
true
message
string
required
data
object