curl --request GET \
--url https://api.example.com/api/interactions/pending \
--header 'x-api-key: <api-key>'import requests
url = "https://api.example.com/api/interactions/pending"
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.example.com/api/interactions/pending', 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/api/interactions/pending",
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.example.com/api/interactions/pending"
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.example.com/api/interactions/pending")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/interactions/pending")
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": {
"count": 123,
"items": [
{
"created_at": "<string>",
"group_id": "<string>",
"interaction_id": "<string>",
"mode": "<string>",
"question": "<string>",
"audience": "<string>",
"channel": "<string>",
"expiry_at": "<string>",
"recipient": "<string>",
"thread_id": "<string>"
}
]
}
}{
"error": "<string>",
"code": "<string>"
}{
"error": "<string>",
"code": "<string>"
}List parked (async) interactions awaiting an answer
A read-only admin audit of the parked async asks awaiting an answer — the native surface a scheduled watchdog flow reads to spot parks nearing (or past) their expiry.
An UNRESTRICTED operator sees the whole cross-audience set — exactly the reach the
operator inbox (list_interactions) already grants. A RESTRICTED caller sees ONLY
the parks addressed to its identity, the same audience filter the inbox applies —
never a 403: this operation is projected, and a projected route must agree with the
gate for every identity it is projected to (the owned-keys e2e pins that invariant).
Reads the pending:expiry index WITHOUT mutating it (no claim, no TTL change):
purely an audit. limit is clamped to 1..:data:MAX_PENDING_INTERACTIONS_LIMIT
(default :data:DEFAULT_PENDING_INTERACTIONS_LIMIT); it bounds the underlying index
scan, so a restricted caller’s filtered slice may hold fewer items. Returns
{"items", "count"} — each item carries interaction_id, group_id,
question (truncated), channel, recipient, audience, thread_id
(when the park carries one), expiry_at, created_at, mode.
curl --request GET \
--url https://api.example.com/api/interactions/pending \
--header 'x-api-key: <api-key>'import requests
url = "https://api.example.com/api/interactions/pending"
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.example.com/api/interactions/pending', 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/api/interactions/pending",
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.example.com/api/interactions/pending"
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.example.com/api/interactions/pending")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/interactions/pending")
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": {
"count": 123,
"items": [
{
"created_at": "<string>",
"group_id": "<string>",
"interaction_id": "<string>",
"mode": "<string>",
"question": "<string>",
"audience": "<string>",
"channel": "<string>",
"expiry_at": "<string>",
"recipient": "<string>",
"thread_id": "<string>"
}
]
}
}{
"error": "<string>",
"code": "<string>"
}{
"error": "<string>",
"code": "<string>"
}Authorizations
Query Parameters
Max parked asks to return, soonest-expiry first. Bounded to 1..1000; an out-of-range value is clamped, never refused.
Response
Success.
The parked-interactions audit body: the bounded (and, for a restricted
caller, audience-filtered) slice plus its count.
Show child attributes
Show child attributes

