Choose a section.

Copy the project webhook URL and project ID, then send a POST request to that endpoint.

Required
"project_id" "lead_number"
Flow
Webhook hits Call & Text follow-up begins
POST
Payload
{
  "project_id": "8860%7t-2es",
  "lead_name": "Jane Smith",
  "lead_number": "+15551234567",
  "interest": "Dog grooming",
  "extra_info": "Any extra info here.",
  "action": "call"
}

Send the payload. Start the text follow up. Get the result back cleanly.

Required
"project_id" "lead_number"
Flow
Webhook hits Text follow-up begins
POST
Payload
{
  "project_id": "8860%7t-2es",
  "lead_name": "Jane Smith",
  "lead_number": "+15551234567",
  "interest": "Dog grooming",
  "extra_info": "Any extra info here.",
  "action": "text"
}

Send the payload. Start the text follow up. Get the result back cleanly.

Required
"project_id" "lead_number"
Flow
Webhook hits Lead stores in Contacts
POST
Payload
{
  "project_id": "8860%7t-2es",
  "lead_name": "Jane Smith",
  "lead_number": "+15551234567",
  "interest": "Dog grooming",
  "extra_info": "Any extra info here.",
  "action": "contact"
}