Call Log
curl --request GET \
--url https://api.example.com/v1/call-logs/:idimport requests
url = "https://api.example.com/v1/call-logs/:id"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/call-logs/:id', 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/v1/call-logs/:id",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/v1/call-logs/:id"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/v1/call-logs/:id")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/call-logs/:id")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyCall logs
Call Log
Retrieves the full details of a specific call.
GET
/
v1
/
call-logs
/
:id
Call Log
curl --request GET \
--url https://api.example.com/v1/call-logs/:idimport requests
url = "https://api.example.com/v1/call-logs/:id"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/call-logs/:id', 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/v1/call-logs/:id",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/v1/call-logs/:id"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/v1/call-logs/:id")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/call-logs/:id")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyGet a Call Log
Retrieves the full details of a specific call, including recording URL, transcript, and disposition.Request
GET /v1/call-logs/:id
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | uuid | Yes | The unique identifier of the call log |
Example
curl -X GET \
"https://kdjmltmhxvvmiuehafgl.supabase.co/functions/v1/api-gateway/v1/call-logs/log-uuid-1" \
-H "Authorization: Bearer rchd_live_xxxxxxxxxxxx"
const callId = "log-uuid-1";
const response = await fetch(
`https://kdjmltmhxvvmiuehafgl.supabase.co/functions/v1/api-gateway/v1/call-logs/${callId}`,
{
headers: {
"Authorization": "Bearer rchd_live_xxxxxxxxxxxx"
}
}
);
const { data } = await response.json();
import requests
call_id = "log-uuid-1"
response = requests.get(
f"https://kdjmltmhxvvmiuehafgl.supabase.co/functions/v1/api-gateway/v1/call-logs/{call_id}",
headers={"Authorization": "Bearer rchd_live_xxxxxxxxxxxx"}
)
data = response.json()
Response
- 200 OK
- 404 Not Found
{
"data": {
"id": "log-uuid-1",
"lead_id": "a1b2c3d4-...",
"campaign_id": "c1d2e3f4-...",
"agent_id": "user-uuid-1",
"from_number": "+33140000000",
"to_number": "+33612345678",
"duration": 145,
"status": "completed",
"disposition": "meeting_booked",
"recording_url": "https://...",
"transcript": "...",
"summary": "Call was positive, ended with a demo booked...",
"notes": "Demo booked for next Thursday",
"started_at": "2026-03-21T14:30:00.000Z",
"ended_at": "2026-03-21T14:32:25.000Z"
}
}
{
"error": {
"code": "not_found",
"message": "Call log not found"
}
}
Additional Fields (vs. List endpoint)
| Field | Type | Description |
|---|---|---|
agent_id | uuid | ID of the agent who handled the call |
transcript | string | Call transcript (if available) |
notes | string | Notes added by the agent after the call |
⌘I
.png?fit=max&auto=format&n=PYj-p9lRwfHX4QQS&q=85&s=967f00940a17d1d8cc11bd8995dc98d0)
.png?fit=max&auto=format&n=PYj-p9lRwfHX4QQS&q=85&s=5072033d90dfd5e7cc9349712ea4e145)