List call analyses
Returns the phone system’s call analyses, newest first (ordered by createdAt descending with id as the tiebreak, so paging is deterministic). A call.analysis.completed webhook carries both callSid and callLogId — filter by either identifier to fetch that call’s analysis, or bound the list with an inclusive createdAt window (dateFrom/dateTo). Requires the calls scope.
GET
/customer/phone-systems/{phoneSystemId}/call-analysesAuthorization
X-API-KeyAPI key · headerrequiredAPI key (sk_phones_* prefix) for programmatic access
Path parameters
phoneSystemIdstring<uuid>requiredPhone system identifier, discoverable via the accessible phone systems operation.
Query parameters
pageinteger1-indexed page number.
min 1 · default: 1
pageSizeintegerRows per page; at most 100.
min 1 · max 100 · default: 25
dateFromstring<date-time>Inclusive lower bound (ISO 8601 UTC) on the row creation time.
dateTostring<date-time>Inclusive upper bound (ISO 8601 UTC) on the row creation time.
callSidstringExact-match filter on the call identifier from a webhook payload.
min length 1 · max length 64
callLogIdstring<uuid>Filter on the call log identifier from a webhook payload.
Responses
200One page of call analyses with the total row count for the filter.
dataobject[]requiredShow propertiesHide properties
Array of
objectanalyzedAtstring<date-time> | anyrequiredWhen the analysis completed.
Show propertiesHide properties
Any of:
string<date-time>
string<date-time>any
anycallLogIdstring<uuid>requiredAnalyzed call log — the callLogId carried by webhook payloads.
callSidstringrequiredCall identifier of the analyzed call, as delivered in webhook payloads.
coachingTipsstring[]requiredActionable coaching suggestions from the analysis.
createdAtstring<date-time>requiredWhen the row was created; lists are ordered by this, descending.
idstring<uuid>requiredCall analysis identifier.
overallScorenumber | anyrequiredOverall score (0-100); null until the analysis completes.
Show propertiesHide properties
Any of:
number
numberany
anyphoneSystemIdstring<uuid>requiredPhone system the analyzed call belongs to.
statusstringrequiredAnalysis lifecycle status.
Allowed:
pendingprocessingcompletedfailedpageintegerrequiredmin 1
pageSizeintegerrequiredmin 1 · max 100
totalintegerrequiredmin 0
totalPagesintegerrequiredmin 0
400Validation failure: an unknown query parameter, a malformed date or UUID, or a pageSize above 100. Field problems are itemized in errors[].
codestringrequiredStable machine identifier to branch on.
correlationIdstringrequiredRequest identifier to quote to support.
detailstringrequiredUser-safe explanation. Display it if you must; never match on it.
errorsobject[]Field-level validation problems. Present on validation failures.
Show propertiesHide properties
Array of
objectcodestringrequiredPer-field machine code (REQUIRED, TOO_SMALL, …).
detailstringrequiredHuman-readable description of the field problem.
pointerstringrequiredJSON Pointer to the offending request field.
paramsobjectExtra primitive detail about the condition, such as a limit that was hit.
retry_afterintegerSeconds to wait before retrying, when a meaningful delay exists.
retryablebooleanrequiredWhether this condition is transient. Derived from code.
statusintegerrequiredMirrors the HTTP status code.
titlestringrequiredShort human summary of the problem type.
typestringrequiredURL identifying the problem type. An identifier to match, not a link.
401The API key is missing, malformed, expired, or revoked.
codestringrequiredStable machine identifier to branch on.
correlationIdstringrequiredRequest identifier to quote to support.
detailstringrequiredUser-safe explanation. Display it if you must; never match on it.
errorsobject[]Field-level validation problems. Present on validation failures.
Show propertiesHide properties
Array of
objectcodestringrequiredPer-field machine code (REQUIRED, TOO_SMALL, …).
detailstringrequiredHuman-readable description of the field problem.
pointerstringrequiredJSON Pointer to the offending request field.
paramsobjectExtra primitive detail about the condition, such as a limit that was hit.
retry_afterintegerSeconds to wait before retrying, when a meaningful delay exists.
retryablebooleanrequiredWhether this condition is transient. Derived from code.
statusintegerrequiredMirrors the HTTP status code.
titlestringrequiredShort human summary of the problem type.
typestringrequiredURL identifying the problem type. An identifier to match, not a link.
403The key lacks the calls:read scope, or is not a tenant API key.
codestringrequiredStable machine identifier to branch on.
correlationIdstringrequiredRequest identifier to quote to support.
detailstringrequiredUser-safe explanation. Display it if you must; never match on it.
errorsobject[]Field-level validation problems. Present on validation failures.
Show propertiesHide properties
Array of
objectcodestringrequiredPer-field machine code (REQUIRED, TOO_SMALL, …).
detailstringrequiredHuman-readable description of the field problem.
pointerstringrequiredJSON Pointer to the offending request field.
paramsobjectExtra primitive detail about the condition, such as a limit that was hit.
retry_afterintegerSeconds to wait before retrying, when a meaningful delay exists.
retryablebooleanrequiredWhether this condition is transient. Derived from code.
statusintegerrequiredMirrors the HTTP status code.
titlestringrequiredShort human summary of the problem type.
typestringrequiredURL identifying the problem type. An identifier to match, not a link.
404The phone system does not exist or is not covered by the key.
codestringrequiredStable machine identifier to branch on.
correlationIdstringrequiredRequest identifier to quote to support.
detailstringrequiredUser-safe explanation. Display it if you must; never match on it.
errorsobject[]Field-level validation problems. Present on validation failures.
Show propertiesHide properties
Array of
objectcodestringrequiredPer-field machine code (REQUIRED, TOO_SMALL, …).
detailstringrequiredHuman-readable description of the field problem.
pointerstringrequiredJSON Pointer to the offending request field.
paramsobjectExtra primitive detail about the condition, such as a limit that was hit.
retry_afterintegerSeconds to wait before retrying, when a meaningful delay exists.
retryablebooleanrequiredWhether this condition is transient. Derived from code.
statusintegerrequiredMirrors the HTTP status code.
titlestringrequiredShort human summary of the problem type.
typestringrequiredURL identifying the problem type. An identifier to match, not a link.
Request
curl -X GET "https://api.steerphones.com/v1/customer/phone-systems/%3Cuuid%3E/call-analyses" \
-H "X-API-Key: YOUR_API_KEY"Response
{
"data": [
{
"analyzedAt": "2024-01-01T00:00:00Z",
"callLogId": "<uuid>",
"callSid": "string",
"coachingTips": [
"string"
],
"createdAt": "2024-01-01T00:00:00Z",
"id": "<uuid>",
"overallScore": 0,
"phoneSystemId": "<uuid>",
"status": "pending"
}
],
"page": 0,
"pageSize": 0,
"total": 0,
"totalPages": 0
}{
"code": "string",
"correlationId": "string",
"detail": "string",
"errors": [
{
"code": "string",
"detail": "string",
"pointer": "string"
}
],
"params": {},
"retry_after": 0,
"retryable": true,
"status": 0,
"title": "string",
"type": "string"
}{
"code": "string",
"correlationId": "string",
"detail": "string",
"errors": [
{
"code": "string",
"detail": "string",
"pointer": "string"
}
],
"params": {},
"retry_after": 0,
"retryable": true,
"status": 0,
"title": "string",
"type": "string"
}{
"code": "string",
"correlationId": "string",
"detail": "string",
"errors": [
{
"code": "string",
"detail": "string",
"pointer": "string"
}
],
"params": {},
"retry_after": 0,
"retryable": true,
"status": 0,
"title": "string",
"type": "string"
}{
"code": "string",
"correlationId": "string",
"detail": "string",
"errors": [
{
"code": "string",
"detail": "string",
"pointer": "string"
}
],
"params": {},
"retry_after": 0,
"retryable": true,
"status": 0,
"title": "string",
"type": "string"
}