Get Team Stats
The Get Team Stats endpoint provides raw summary information on total cards counts and counts of cards in various verification states.
API Endpoint
GET /v1/teams/{teamId}/stats
URL Parameters
teamIdthe ID of the Team
Sample Response
The response will contain an array of event objects. Fields include...
-
team-card-counttotal number of cards visible to the team -
team-trust-scoretotal number of cards in each verification state
{
"stats" : {
"team-card-count" : {
"count" : 848
},
"team-trust-score" : {
"trustedCount" : 706,
"needsVerificationCount" : 142
}
}
}Updated about 1 month ago
