Skip to main content
POST
/
team
/
clients
/
stats
Get service provider client aggregate stats
curl --request POST \
  --url https://api.wirespeed.co/team/clients/stats \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "size": 123,
  "page": 123,
  "filter": "<string>",
  "search": "<string>",
  "orderBy": "<string>",
  "orderDir": "asc",
  "onlyDemo": true,
  "onlyTestMode": true,
  "onlyOperatingTeam": true,
  "onlyEndpointAutoContainment": true,
  "onlyIdentityAutoContainment": true,
  "onlyAutoContainEndpointHVA": true,
  "onlyAutoContainIdentityVIP": true,
  "escalationEmailSource": "custom"
}
'
{
  "totalClients": 123,
  "totalTeamMembers": 123,
  "totalBillableUsers": 123,
  "totalBillableEndpoints": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
size
number
page
number
filter
string
orderBy
string
orderDir
enum<string>
Available options:
asc,
desc
onlyDemo
boolean

Only include demo clients

onlyTestMode
boolean

Only include test mode clients

onlyOperatingTeam
boolean

Only include clients marked as operating teams

onlyEndpointAutoContainment
boolean

Only include clients with endpoint auto containment enabled

onlyIdentityAutoContainment
boolean

Only include clients with identity auto containment enabled

onlyAutoContainEndpointHVA
boolean

Only include clients with endpoint HVA containment enabled

onlyAutoContainIdentityVIP
boolean

Only include clients with identity VIP containment enabled

escalationEmailSource
enum<string>

Filter by escalation email source

Available options:
custom,
inherited

Response

totalClients
number
required

Total number of clients in filtered result set

totalTeamMembers
number
required

Total team members across filtered clients

totalBillableUsers
number
required

Total billable users across filtered clients

totalBillableEndpoints
number
required

Total billable endpoints across filtered clients