Create signed URL for redacted recording audio (download)
curl --request POST \
--url https://api.siro.ai/v1/core/recordings/{id}/signedUrl \
--header 'x-siro-auth-token: <api-key>'import requests
url = "https://api.siro.ai/v1/core/recordings/{id}/signedUrl"
headers = {"x-siro-auth-token": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-siro-auth-token': '<api-key>'}};
fetch('https://api.siro.ai/v1/core/recordings/{id}/signedUrl', 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.siro.ai/v1/core/recordings/{id}/signedUrl",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"x-siro-auth-token: <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.siro.ai/v1/core/recordings/{id}/signedUrl"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("x-siro-auth-token", "<api-key>")
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.siro.ai/v1/core/recordings/{id}/signedUrl")
.header("x-siro-auth-token", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.siro.ai/v1/core/recordings/{id}/signedUrl")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-siro-auth-token"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"error": true,
"url": "<string>",
"expiration": 123,
"errorMessage": "<string>"
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"issues": [
{
"code": "<string>",
"path": [
"<string>"
],
"message": "<string>",
"expected": "<string>",
"received": "<string>"
}
],
"name": "ZodError"
}{
"error": "<string>"
}Recordings
Download redacted recording audio (signed URL)
Returns a short-lived signed URL to download the redacted recording audio (typically .m4a). Call POST with an empty body after the recording exists. Authentication: user-scoped x-siro-auth-token (OAuth access token). This is not the org-wide upload flow—use POST /v1/core/recordings/signed-urls on the user-scoped API when uploading before a recording id exists.
POST
/
v1
/
core
/
recordings
/
{id}
/
signedUrl
Create signed URL for redacted recording audio (download)
curl --request POST \
--url https://api.siro.ai/v1/core/recordings/{id}/signedUrl \
--header 'x-siro-auth-token: <api-key>'import requests
url = "https://api.siro.ai/v1/core/recordings/{id}/signedUrl"
headers = {"x-siro-auth-token": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-siro-auth-token': '<api-key>'}};
fetch('https://api.siro.ai/v1/core/recordings/{id}/signedUrl', 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.siro.ai/v1/core/recordings/{id}/signedUrl",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"x-siro-auth-token: <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.siro.ai/v1/core/recordings/{id}/signedUrl"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("x-siro-auth-token", "<api-key>")
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.siro.ai/v1/core/recordings/{id}/signedUrl")
.header("x-siro-auth-token", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.siro.ai/v1/core/recordings/{id}/signedUrl")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-siro-auth-token"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"error": true,
"url": "<string>",
"expiration": 123,
"errorMessage": "<string>"
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"issues": [
{
"code": "<string>",
"path": [
"<string>"
],
"message": "<string>",
"expected": "<string>",
"received": "<string>"
}
],
"name": "ZodError"
}{
"error": "<string>"
}Authentication: User-scoped API — send your OAuth access token in header
x-siro-auth-token (machine-to-machine or user-delegated token, not the organization API key).
Returns a short-lived signed URL to fetch the redacted recording audio (typically .m4a). Call POST with no body; path id is the Siro recording id (same as Get recording).
Not upload: To upload audio before a recording exists, use POST /v1/core/recordings/signed-urls on the Recordings upload flow — see Post recordings signed urls.Authorizations
OAuth access token for user-scoped requests (Authorization Code or machine-to-machine). Send header x-siro-auth-token: <oauth-access-token>. Not an organization API key.
Path Parameters
Siro internal id of the recording (same id as GET /v1/core/recordings/{id}).
Response
Create a new signed URL for a recording
Show child attributes
Show child attributes