GET
/
usageReport
curl --request GET \
  --url http://api.attention.tech/v2/usageReport \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "user": {
        "uuid": "user1-uuid",
        "email": "user1@email.com",
        "firstName": "FirstName1",
        "lastName": "LastName1",
        "team": {
          "uuid": "team-uuid",
          "name": "TeamName"
        }
      },
      "metrics": {
        "coachingSessions": 0,
        "callsViewed": 0,
        "commentsLeft": 0,
        "snippetsCreated": 0,
        "gInsightsRan": 0,
        "conversationInsightsRan": 0
      }
    },
    {
      "user": {
        "uuid": "user2-uuid",
        "email": "user2@email.com",
        "firstName": "FirstName2",
        "lastName": "LastName2",
        "team": {
          "uuid": "team-uuid",
          "name": "TeamName"
        }
      },
      "metrics": {
        "coachingSessions": 0,
        "callsViewed": 0,
        "commentsLeft": 0,
        "snippetsCreated": 0,
        "gInsightsRan": 0,
        "conversationInsightsRan": 0
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

user-uuids
string[]

List of user UUIDs to include in the report

team-uuids
string[]

List of team UUIDs to include in the report

startDate
string
required

Start date for the usage report period (inclusive)

endDate
string
required

End date for the usage report period (inclusive)

Response

200
application/json

Usage report successfully generated with detailed statistics

The response is of type object.