Make Phone Call
curl --request POST \
--url https://api.example.com/api/optimus/phone-callimport requests
url = "https://api.example.com/api/optimus/phone-call"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.example.com/api/optimus/phone-call', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/optimus/phone-call",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/optimus/phone-call"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/api/optimus/phone-call")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/optimus/phone-call")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_bodyCalls
Make Phone Call
Initiate an outbound phone call
POST
/
api
/
optimus
/
phone-call
Make Phone Call
curl --request POST \
--url https://api.example.com/api/optimus/phone-callimport requests
url = "https://api.example.com/api/optimus/phone-call"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.example.com/api/optimus/phone-call', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/optimus/phone-call",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/optimus/phone-call"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/api/optimus/phone-call")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/optimus/phone-call")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_bodyRequest
curl -X POST https://app.orova.ai/api/optimus/call \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"assistantId": "AGENT_ID",
"phoneNumber": "+1234567890",
"phoneNumberId": "PHONE_NUMBER_ID",
"contactName": "John Doe",
"workspaceId": "WORKSPACE_ID"
}'
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
assistantId | string | Yes | Agent to use for the call |
phoneNumber | string | Yes | Destination phone number (E.164) |
phoneNumberId | string | Yes | Orova phone number to call from |
contactName | string | No | Contact name for history and variable injection |
workspaceId | string | Yes | Workspace ID |
Response
{
"call_id": "call_abc123",
"status": "initiated"
}
Notes
- A credit check is performed before the call. Returns
402if insufficient credits. - If
contactNameis provided, Orova looks up the contact and injects their data as variables. - The call is initiated via Twilio. The agent speaks the first message when the recipient answers.
Was this page helpful?
⌘I

