curl --request GET \
--url https://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId}', 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://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "queued",
"practice_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"purpose": "<string>",
"counts": {
"total": 123,
"pending": 123,
"calling": 123,
"completed": 123,
"failed": 123,
"skipped": 123
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"context": "<string>",
"window": {
"start": "2023-11-07T05:31:56Z",
"end": "2023-11-07T05:31:56Z",
"daily_start": "<string>",
"daily_end": "<string>",
"days": [
3
]
},
"contacts": [
{
"phone": "<string>",
"name": "<string>",
"external_ref": "<string>",
"status": "pending",
"outcome": "<string>",
"call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}Get a call request
Returns a single call request with per-contact progress (status,
outcome, and the resulting call_id once each contact has been
dialed). Requires call-requests:write.
curl --request GET \
--url https://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId}', 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://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://voice.growdental.ai/api/partner/v1/call-requests/{callRequestId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "queued",
"practice_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"purpose": "<string>",
"counts": {
"total": 123,
"pending": 123,
"calling": 123,
"completed": 123,
"failed": 123,
"skipped": 123
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"context": "<string>",
"window": {
"start": "2023-11-07T05:31:56Z",
"end": "2023-11-07T05:31:56Z",
"daily_start": "<string>",
"daily_end": "<string>",
"days": [
3
]
},
"contacts": [
{
"phone": "<string>",
"name": "<string>",
"external_ref": "<string>",
"status": "pending",
"outcome": "<string>",
"call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}Authorizations
Partner API key sent as a Bearer token:
Authorization: Bearer gd_live_...
Keys are issued by the GrowDental team (invite-only), shown once
at creation, and stored server-side only as a SHA-256 hash. Key format:
gd_live_ (or gd_test_) followed by a 43-character base62 secret
(~256 bits of entropy). To rotate, request a new key, deploy it, then
ask us to revoke the old one — both keys work during the overlap.
Path Parameters
Call request ID.
Response
The call request.
A call request with its window, context, and per-contact progress.
queued until dialing begins, in_progress while contacts are
being worked, completed when every contact is terminal.
queued, in_progress, completed, paused, cancelled Aggregate contact-status counts for a call request. Keys beyond the listed ones may appear if new contact statuses are introduced.
Show child attributes
Show child attributes
The free-text context supplied at creation.
Show child attributes
Show child attributes
Show child attributes
Show child attributes