Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
curl --request GET \
--url https://api.wirespeed.co/asset/counts \
--header 'Authorization: Bearer <token>'
{
"users": 123,
"endpoints": 123,
"cases": 123,
"detections": 123,
"teamMembers": 123,
"events": 123
}
curl --request GET \
--url https://api.wirespeed.co/asset/counts \
--header 'Authorization: Bearer <token>'
{
"users": 123,
"endpoints": 123,
"cases": 123,
"detections": 123,
"teamMembers": 123,
"events": 123
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.