cURL
curl --request GET \
--url https://api.samora.ai/v2/webhooks/events \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.samora.ai/v2/webhooks/events"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.samora.ai/v2/webhooks/events', 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.samora.ai/v2/webhooks/events",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.samora.ai/v2/webhooks/events"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.samora.ai/v2/webhooks/events")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.samora.ai/v2/webhooks/events")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"events": [
{
"event_type": "CALL_STARTED",
"display_name": "Call Started",
"description": "Triggered when a call begins (inbound or outbound). Basic call info available.",
"available_data_options": []
},
{
"event_type": "CALL_FINISHED",
"display_name": "Call Finished",
"description": "Triggered when a call ends with transcript and recording available.",
"available_data_options": [
"include_transcript",
"include_recording_url"
]
},
{
"event_type": "CALL_FAILED",
"display_name": "Call Failed",
"description": "Triggered when a call fails, is rejected, or goes unanswered.",
"available_data_options": []
}
]
}
}Webhooks
Get webhook events
Returns the catalog of available webhook event types and their descriptions.
GET
/
v2
/
webhooks
/
events
cURL
curl --request GET \
--url https://api.samora.ai/v2/webhooks/events \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.samora.ai/v2/webhooks/events"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.samora.ai/v2/webhooks/events', 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.samora.ai/v2/webhooks/events",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.samora.ai/v2/webhooks/events"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.samora.ai/v2/webhooks/events")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.samora.ai/v2/webhooks/events")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"events": [
{
"event_type": "CALL_STARTED",
"display_name": "Call Started",
"description": "Triggered when a call begins (inbound or outbound). Basic call info available.",
"available_data_options": []
},
{
"event_type": "CALL_FINISHED",
"display_name": "Call Finished",
"description": "Triggered when a call ends with transcript and recording available.",
"available_data_options": [
"include_transcript",
"include_recording_url"
]
},
{
"event_type": "CALL_FAILED",
"display_name": "Call Failed",
"description": "Triggered when a call fails, is rejected, or goes unanswered.",
"available_data_options": []
}
]
}
}⌘I