Endpoint: https://app.calldrip.eu/api/clicktocallv2
| Parameter | Description |
|---|---|
api_key |
Calldrip's Api Key (ExampleAPIKey2456Ax23) |
account_id |
Calldrip's Account Id (123456) |
user_id |
Agent's ID in either Calldrip or Vendor’s system (65432) |
user_phone_number |
Phone number of the agent |
customer_phone_number |
Phone number of the lead |
customer_first_name |
Lead's First Name |
customer_last_name |
Lead's Last Name |
curl --request POST \
--url 'https://app.calldrip.eu/api/clicktocallv2' \
--header 'Content-Type: application/json' \
--header 'api_key: YOUR_API_USER' \
--data '{
"account_id": "123456",
"user_id": "65432",
"user_phone_number": "555555555",
"customer_phone_number": "8888888888",
"customer_first_name": "James",
"customer_last_name": "Doe"
}'