I am making a call to the Zoho Mail API to move the folder of an email - DOCS HERE
I am receiving the error “[404] EXTRA_KEY_FOUND_IN_JSON”
My input bundle looks like this:
[ { "qs": [], "url": "/accounts/2940894000000002002/updatemessage", "body": "{\"mode\":\"moveMessage\",\"messageId\":[\"1738440990255004600\"],\"destfolderID\":\"2940894000000002014\"}", "method": "PUT", "headers": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ] } ]
From what I can see the only extra item in the JOSN is “qs” which is the from the unrequired query string input and I have no option to remove it.
Beyond that the body is correct (though those slashes are unrequired but it’s created with the “create JSON” tool)
I am abit baffled, can anybody point me in the right direction or show me a working flow to move a message to a new folder?