POST
/
team
/
log
Search system logs
curl --request POST \
  --url https://api.wirespeed.com/team/log \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "size": 123,
  "page": 123,
  "filter": "<string>",
  "search": "<string>",
  "orderBy": "<string>",
  "orderDir": "asc"
}'
{
  "data": [
    {
      "id": "<string>",
      "userId": "<string>",
      "userEmail": "<string>",
      "teamId": "<string>",
      "message": "<string>",
      "createdAt": "<string>",
      "security": true,
      "identifier": "<string>"
    }
  ],
  "totalCount": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

The response is of type object.