curl -X POST \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Authorization: YOUR_API_KEY" \
--data '{"connection_id": "uuid", "to": "+18005551212", "from": "+18005551200"}' \
https://api.verificationtechnologies.ai/calls
import verificationtechnologies
verificationtechnologies.api_key = "YOUR_API_KEY"
plura.Call.create(connection_id="uuid", to="+18005551212", from_="+18005551212")
require "verificationtechnologies"
Verificationtechnologies.api_key = "YOUR_API_KEY"
Verificationtechnologies::Call.create(connection_id: "uuid", to: "+18005551212", from: "+18005551200")
const verificationtechnologies = require('verificationtechnologies')('YOUR_API_KEY');
// for Node 10:
const { data: call } = await verificationtechnologies.calls.create({ connection_id: 'uuid', to: '+18005551212', from: '+18005551200' });
// In other environments
verificationtechnologies.calls.create(...).then(function(response){
const call = response.data;
});
\Verificationtechnologies\Call::setApiKey('YOUR_API_KEY');
$call = Call::create([
'connection_id' => 'uuid',
'to' => '+18005551212',
'from' => '+18005551200'
]);
PluraConfiguration.SetApiKey('YOUR_API_KEY');
var service = new CallControlAnswerService();
var options = new CallControlDialOptions {
To = "+18005551212 or SIP:username@sip.plura.ai",
From = "+18005551200",
ConnectionId = "string"
};
service.Dial(options);