Aurion Docs
Api

Search By Phone

Search calls by phone number (AC3). Phone number is redacted in response for PII protection. Search is logged to audit_logs for compliance. Requires minimum 4 characters for search term. Rate limited to 10 searches per minute per user (SEC-001).

GET
/api/v1/analytics/search

Search calls by phone number (AC3).

Phone number is redacted in response for PII protection. Search is logged to audit_logs for compliance. Requires minimum 4 characters for search term. Rate limited to 10 searches per minute per user (SEC-001).

AuthorizationBearer <token>

In: header

Query Parameters

phone*string

Phone number (min 4 chars)

Length4 <= length
start_date*string

Start date (YYYY-MM-DD)

Formatdate
end_date*string

End date (YYYY-MM-DD)

Formatdate
limit?integer

Max results

Default50
Range1 <= value <= 100

Response Body

application/json

application/json

curl -X GET "https://loading/api/v1/analytics/search?phone=string&start_date=2019-08-24&end_date=2019-08-24"
{
  "results": [
    {
      "call_id": "0d0a16ab-a508-4d58-bf24-5dc3cb248f3e",
      "duration_seconds": 0,
      "outcome": "string",
      "phone_number_redacted": "string",
      "start_time": "2019-08-24T14:15:22Z",
      "status": "string"
    }
  ],
  "search_term_redacted": "string",
  "total_count": 0
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}