curl --request POST \
--url https://api.wirespeed.co/cases/count/by-team \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"days": 123,
"limit": 123
}
'{
"data": [
{
"teamId": "<string>",
"teamName": "<string>",
"count": 123,
"criticalCount": 123,
"highCount": 123
}
],
"total": 123
}curl --request POST \
--url https://api.wirespeed.co/cases/count/by-team \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"days": 123,
"limit": 123
}
'{
"data": [
{
"teamId": "<string>",
"teamName": "<string>",
"count": 123,
"criticalCount": 123,
"highCount": 123
}
],
"total": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.