Skip to main content
POST
/
team
/
log
/
count
Get system log search count
curl --request POST \
  --url https://api.wirespeed.co/team/log/count \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "size": 123,
  "page": 123,
  "filter": "<string>",
  "search": "<string>",
  "orderBy": "<string>",
  "orderDir": "asc",
  "security": true
}
'
{
  "totalCount": 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
security
boolean

Filter to show only security events when true

Response

totalCount
number
required

Total number of system log entries matching the search criteria