Audit timeline for a verification
curl --request GET \
--url https://platform-staging.get-rial.com/v1/verifications/{id}/events \
--cookie rial_session=import requests
url = "https://platform-staging.get-rial.com/v1/verifications/{id}/events"
headers = {"cookie": "rial_session="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'rial_session='}};
fetch('https://platform-staging.get-rial.com/v1/verifications/{id}/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://platform-staging.get-rial.com/v1/verifications/{id}/events",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "rial_session=",
]);
$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://platform-staging.get-rial.com/v1/verifications/{id}/events"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "rial_session=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://platform-staging.get-rial.com/v1/verifications/{id}/events")
.header("cookie", "rial_session=")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform-staging.get-rial.com/v1/verifications/{id}/events")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["cookie"] = 'rial_session='
response = http.request(request)
puts response.read_body{
"events": [
{
"event_id": "evt_01HXYZABC",
"event_name": "verification.created",
"occurred_at": "2026-05-28T13:00:00.000Z"
},
{
"event_id": "evt_01HXYZDEF",
"event_name": "verification.capture.persisted",
"occurred_at": "2026-05-28T13:02:15.000Z"
},
{
"event_id": "evt_01HXYZGHI",
"event_name": "verification.case.completed",
"occurred_at": "2026-05-28T13:05:00.000Z",
"payload": {
"narrative": "Front bumper damaged after low-speed collision."
}
}
]
}{
"error": {
"code": "not_found",
"message": "Resource not found"
}
}Verifications
Audit timeline for a verification
Every domain event the worker recorded against this verification, in chronological order. Powers the dashboard “Audit timeline” card. Read-only.
GET
/
v1
/
verifications
/
{id}
/
events
Audit timeline for a verification
curl --request GET \
--url https://platform-staging.get-rial.com/v1/verifications/{id}/events \
--cookie rial_session=import requests
url = "https://platform-staging.get-rial.com/v1/verifications/{id}/events"
headers = {"cookie": "rial_session="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'rial_session='}};
fetch('https://platform-staging.get-rial.com/v1/verifications/{id}/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://platform-staging.get-rial.com/v1/verifications/{id}/events",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "rial_session=",
]);
$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://platform-staging.get-rial.com/v1/verifications/{id}/events"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "rial_session=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://platform-staging.get-rial.com/v1/verifications/{id}/events")
.header("cookie", "rial_session=")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform-staging.get-rial.com/v1/verifications/{id}/events")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["cookie"] = 'rial_session='
response = http.request(request)
puts response.read_body{
"events": [
{
"event_id": "evt_01HXYZABC",
"event_name": "verification.created",
"occurred_at": "2026-05-28T13:00:00.000Z"
},
{
"event_id": "evt_01HXYZDEF",
"event_name": "verification.capture.persisted",
"occurred_at": "2026-05-28T13:02:15.000Z"
},
{
"event_id": "evt_01HXYZGHI",
"event_name": "verification.case.completed",
"occurred_at": "2026-05-28T13:05:00.000Z",
"payload": {
"narrative": "Front bumper damaged after low-speed collision."
}
}
]
}{
"error": {
"code": "not_found",
"message": "Resource not found"
}
}Authorizations
cookieSessionbearerApiKey
Dashboard / operator session cookie. Set by /v1/auth/google/callback after Google OAuth, JWT signed with the rotating rial-platform/session-signing HMAC. Read on every request the SPA makes with credentials: include. Browser-only — server-to-server callers use bearerApiKey instead.
Path Parameters
ULID with vfy_ prefix.
Pattern:
^vfy_[0-9A-HJKMNP-TV-Z]{26}$Example:
"vfy_01HXYZABCDEFGHJKMNPQRSTVWX"
Response
Audit entries in chronological order.
Show child attributes
Show child attributes
⌘I