latestOpenAPI 3.1.1Proprietary – Contact us for usage terms2026-08-20173183551.4 KB

9da73dd2f99e

empower

Retrieve call summaries by date range or user

Retrieves call summaries for a specified user within a given date range, including recap, moments, transcription, and scores.

Permission: Empower Read required.

Monitoring: No impact. Visibility depends on your Empower role: Admin sees all team calls, Supervisor sees supervised users' calls, User sees own calls only.

post/empower/call

Request body

start_datestring date-time required

The start date for filtering calls (optional).

end_datestring date-time required

The end date for filtering calls (optional).

user_idinteger required

The ID of the user for whom the summary is requested (optional).

limitinteger required

Limit the number of calls returned. Defaults to 10 if not provided (max 10).

offsetinteger required

Offset for pagination. Use this to skip a number of calls.

Example request

{
  "limit": 10
}

Response

A list of call summaries.

call_scoreinteger

Score of the call.

Example response

[
  {
    "moments": [
      {
        "moment_id": 100000,
        "team_id": 100000,
        "keywords": [
          {
            "keyword_id": 100000
          }
        ]
      }
    ]
  }
]