Developers API Methods wizehive.pages.getList
wizehive.formsubmissions.getList
Gets a list of submissions for forms.
Authentication
This method requires authentication.
Arguments
api_key (Required) Your API application key. See here for more details. ws_id (Required) Id of the workspace you want the list of submissions for. form_id (Optional) Id of the form you want the list of submissions for. page_id (Optional) Id of the page you want the list of submissions for. pg_id (Optional) Id of the pagegroup you want the list of submissions for.
Example Response
<form id="1" name="test999" workspace_id="1">
<formfields>
<field id="1">
<name>first</name>
<label>First Name</label>
<type>8</type>
<choices/>
</field>
<field id="2">
<name>last</name>
<label>Last Name</label>
<type>7</type>
<choices/>
</field>
</formfields>
<submissions>
<submission id="95" page_id="9" submit_date="2009-12-20 17:40:58" score="3.00">
<responses>
<response id="78" field_id="1">Test First</response>
<response id="79" field_id="2">Test Last</response>
</responses>
</submission>
<submission id="96" page_id="10" submit_date="2009-12-19 18:51:41" score="3.00">
<responses>
<response id="80" field_id="1">Second Test</response>
<response id="81" field_id="2">Second Last</response>
</responses>
</submission>
</submissions>
</form>
Error Codes
3: Must supply workspace id The required parameter ws_id was not found. 98: Login failed / Invalid auth token The login details or auth token passed were invalid. 99: User not logged in / Insufficient permissions The user is not logged in, or the user does not have access to the Forms API. 100: Invalid API Key The API key passed was not valid or has expired. 112: Method "xxx" not found The requested method was not found.