curl --request GET \
--url https://api.wirespeed.com/cases/count/weekly \
--header 'Authorization: Bearer <token>'
[
{
"count": 123,
"week": "<string>",
"teamId": "<string>",
"teamName": "<string>"
}
]
curl --request GET \
--url https://api.wirespeed.com/cases/count/weekly \
--header 'Authorization: Bearer <token>'
[
{
"count": 123,
"week": "<string>",
"teamId": "<string>",
"teamName": "<string>"
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object[]
.