Making the following API call to return the results of an API Monitoring test:
curl 'https://api.runscope.com/buckets/<bucket ID>/tests/<test ID>/results \
-X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <bearer>`
use to work but now fails with the following error:
{
"data": {},
"meta": {
"status": "error"
},
"error": {
"status": 400,
"message": "Bad Request"
}
}
Content-type":"application/json" header is not required
Release : 1.0
Component : BLAZEMETER API MONITORING
Removing the "Content-type":"application/json" header resolved the issue
curl 'https://api.runscope.com/buckets/<bucket ID>/tests/<test ID>/results \
-X GET \
-H 'Authorization: Bearer <bearer>`