I'm making the following API call against the test system (
https://test1-api.rescuegroups.org/http/v2.json) :
{
"token":"{{token}}",
"tokenHash":"{{tokenHash}}",
"objectType":"animals",
"objectAction":"addPictureUrl",
"values":
[
{
"animalID":"{{animalID}}",
},
{
"animalID":"{{animalID}}",
},
{
"animalID":"{{animalID}}",
}
]
}
All three images are publicly accessible via a web browser. The first image (admin.afh.ong) returns an error, the other two images are processed correctly.
{
"status": "error",
"messages": {
"generalMessages": [],
"recordMessages": [
{
"status": "error",
"ID": "",
"messageID": "1002",
"messageCriticality": "error",
"messageText": "Failed to save the record."
},
{
"status": "ok",
"ID": 92664898,
"messageID": "1003",
"messageCriticality": "info",
"messageText": "Successfully saved the record."
},
{
"status": "ok",
"ID": 92664899,
"messageID": "1003",
"messageCriticality": "info",
"messageText": "Successfully saved the record."
}
]
},
"foundRows": 0,
"data": []
}
Can you offer any insight into why the first image is not being processed?
Thanks,
KLC