POST
/
v1
/
webhooks
/
call-now
Call Now
curl --request POST \
  --url https://api.eqho.ai/v1/webhooks/call-now \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "phone_number": "+1234567890",
  "first_name": "John",
  "last_name": "Doe",
  "email": "[email protected]",
  "lead_list_id": "60c72b2f9b1e8d001c8e115b",
  "extra_data": {
    "source": "web"
  },
  "recall_threshold_in_seconds": 123,
  "timezone": "US/Mountain"
}'
{
  "created_at": "2021-08-25T00:00:00+00:00",
  "email": "[email protected]",
  "first_name": "Jane",
  "last_name": "Smith",
  "phone": "+18015551831",
  "phone_extension": "123"
}

Authorizations

X-API-KEY
string
header
required

Body

application/json
phone_number
string<phone>
required

Phone number in E.164 format

Examples:

"+1234567890"

first_name
string
required

First name of the lead

Examples:

"John"

last_name
string
required

Last name of the lead

Examples:

"Doe"

lead_list_id
string
required

ID of the lead list to which this lead belongs

Examples:

"60c72b2f9b1e8d001c8e115b"

email
string | null

Email address of the lead

extra_data
object | null

Custom fields for the lead, can be used to store additional information

Examples:
{ "source": "web" }
recall_threshold_in_seconds
integer | null
timezone
string | null
default:US/Mountain

Lead's timezone, must be a valid IANA time zone identifier.

Examples:

"US/Mountain"

"Europe/London"

Response

Successful Response

phone
string
required
_id
string | null
account_id
string | null
first_name
string | null
last_name
string | null
email
string | null
phone_extension
string | null
call_now
boolean | null
list_ids
string[] | null
timezone
string | null
default:US/Mountain
extracted_data
object | null
custom_fields
object | null
enabled
boolean | null
default:true
created_at
string<date-time> | null
created_by
string | null
campaign_info
CampaignInfo · object[] | null