Click to call

Getting Started:


  1. Contact us at support@dcdw.nl (Phone: +31 318 798 500) to receive your Developer API Credentials.
  2. Have support configure JSON (ADF/XML) parsing rules for your account.
  3. Send test leads to your connected test account.
  4. Contact us when you receive a success message to verify the lead's success.
  5. Receive your Production API credentials.

End Points


Endpoint: https://app.calldrip.eu/api/clicktocallv2

Parameters


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

Example

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"
  }'