Skip to main content
GET
/
voice
/
calls
/
{callId}
/
security
cURL
curl --request GET \
  --url https://api.useanima.sh/v1/voice/calls/{callId}/security \
  --header 'Authorization: Bearer <token>'
{
  "callId": "<string>",
  "threats": [
    {
      "type": "<string>",
      "segmentIndex": 123,
      "speaker": "<string>",
      "description": "<string>",
      "matchedText": "<string>"
    }
  ],
  "piiDetected": [
    {
      "type": "<string>",
      "speaker": "<string>",
      "segmentIndex": 123,
      "redacted": "<string>"
    }
  ],
  "compliancePass": true,
  "riskScore": 123,
  "scannedAt": "<string>"
}

Authorizations

Authorization
string
header
required

JWT Bearer token obtained from authentication. Pass as: Authorization: Bearer

Path Parameters

callId
string
required

Response

200 - application/json

OK

callId
string
required
threats
object[]
required
piiDetected
object[]
required
compliancePass
boolean
required
riskScore
number
required
scannedAt
string
required