Hello,
I am trying to make an API call to my Zoho Creator application to get the field names of a form to display in a mobile app. However, I am getting the following response:
<!-- $Id$ -->
<div style="text-align: center;vertical-align: middle;font-size: 14px;margin-top:150px;">There is no such form in <a href='/'><strong>Zoho Creator</strong></a></div>
Here is the code I have written:
var XHRResponse = XHR2.send("GET", url, {
"parameters": {
"authtoken": "**********",
"scope": "creatorapi",
"zc_ownername": "michaelkahan"
}
});
This form is published and works on its own, but when trying to access it through the API, it cant seem to find it.
Any idea what I am doing wrong or need to adjust?
Thanks for the help!