Hello all,
I found a "General API Error" when I try to insert an "animalColor", see below.
I thought that maybe it needed to match one of the available colors available in "animalColors", so I also tried "Tuxedo" as an animal color. It also resulted in General Error. I found this on production.
Request
{
"objectType": "animals",
"objectAction": "edit",
"values": [
{
"animalID": "...",
"animalColor": "Tuxedo"
}
],
"token": "{{token}}",
"tokenHash":"{{tokenHash}}"
}
Result
{
"status": "error",
"messages": {
"generalMessages": [
{
"messageCriticality": "error",
"messageText": "General API error.",
"messageID": "1000"
}
],
"recordMessages": []
}
}