Skip to main content

Click to Call

The Click to Call API allows you to programmatically initiate calls between two parties, commonly used for CRM integrations and web applications.

Base URL​

https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/clicktocall

Overview​

Click to Call enables your applications to connect two parties by first calling the initiator, then bridging them to the destination number. This is ideal for sales teams, support applications, and CRM integrations.

Endpoints​

MethodEndpointDescription
GET/clicktocallList click-to-call configurations
GET/clicktocall/{ID}Get configuration details
PUT/clicktocallCreate new configuration
POST/clicktocall/{ID}Update configuration
DELETE/clicktocall/{ID}Delete configuration
POST/clicktocall/{ID}/connectInitiate a call

Initiate Call​

curl -X POST "https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/clicktocall/{ID}/connect" \
-H "X-Auth-Token: {AUTH_TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"data": {
"extension": "1001",
"contact": "+15559876543"
}
}'

Response​

{
"auth_token": "{AUTH_TOKEN}",
"data": {
"call_id": "call_abc123",
"status": "initiated"
},
"request_id": "{REQUEST_ID}",
"status": "success"
}
Documentation In Progress

This documentation is being expanded. Check back soon for complete API reference.