You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$jotformAPI = new JotForm($apikey); $formSubmissions= $jotformAPI->getFormSubmissions($formID);
and I get this exception: exception 'JotFormException' with message 'Requested URL (/v1/form/submissions) is not available!' in /Library/HTTPServer/htdocs/JotForm/JotForm.php:118
Also when you try the same call using curl there is a message 404.
{ "responseCode": 404, "message": "Requested URL (/form/{id}/submissions) is not available!", "info": "http://api.jotform.com/docs", "limit-left": 9989, "duration": "14ms" }
Can you fix that please?
Also is there a way to get xml as response instead of JSON?
The text was updated successfully, but these errors were encountered:
I've checked GET /form/{id}/submissions endpoint, it's working without any problem. Could you please check your formID and apiKey?
If you can provide us your formID, we can assist you better.
Also, it's possible to fetch your form responses in XML format. In order to do this, please pass outputType parameter as "xml" to constructor. It's default is JSON.
$jotformAPI = new JotForm($apikey); $formSubmissions= $jotformAPI->getFormSubmissions($formID);
and I get this exception:
exception 'JotFormException' with message 'Requested URL (/v1/form/submissions) is not available!' in /Library/HTTPServer/htdocs/JotForm/JotForm.php:118
Also when you try the same call using curl there is a message 404.
{ "responseCode": 404, "message": "Requested URL (/form/{id}/submissions) is not available!", "info": "http://api.jotform.com/docs", "limit-left": 9989, "duration": "14ms" }
Can you fix that please?
Also is there a way to get xml as response instead of JSON?
The text was updated successfully, but these errors were encountered: