I am trying to use Postman to make an API call. I am trying a call to GET from https://api.rescuegroups.org/http/v2.json, using the following Body (JSON). I got this format from another post I saw here:
{ "data": [ { "apikey": "<key I was given>", "objectType": "animals", "objectAction": "define" } ] }
But I get back an error status:
({ "status": "error", "message": "Unable to read your data; it might not be in json format." })
I am trying to use Postman to make an API call. I am trying a call to GET from https://api.rescuegroups.org/http/v2.json, using the following Body (JSON). I got this format from another post I saw here:
{
"data": [
{
"apikey": "<key I was given>",
"objectType": "animals",
"objectAction": "define"
}
]
}
But I get back an error status:
({
"status": "error",
"message": "Unable to read your data; it might not be in json format."
})