Developers API Methods wizehive.pages.getList

wizehive.forms.getList

Gets a list of 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 forms 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>
    <field id="3">
      <name>initial</name>
      <label>Initial</label>
      <type>4</type>
      <choices/>
    </field>
    <field id="24">
      <name>Gender</name>
      <label>Gender</label>
      <type>5</type>
      <choices>{"1":"Male","2":"Female"}</choices>
    </field>
  </formfields>
</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.