Request information for forms that match the specified criteria. You can specify the forms and fields to request. A maximum of 200 records are returned. To return all forms, specify the output as mobile.
URI
1/api/form/version/4/do/query?...
Parameters to Select Forms
Use these parameters to specify the forms to return. Parameters can be used in any combination and in any order unless otherwise specified.
Request forms created after the specified time. Example: To request forms created in 2020, use /api/form/version/4/do/query?created_after=2019-12-31 24:59:59.
Request forms created before the specified time. Doesn’t include forms created at the specified time. Example: to request forms created before today (but not created today), use /api/form/version/4/do/query?created_before=today.
id_greater_than
integer
Any positive integer
Request forms that have an Account Engagement ID greater than the specified number.
id_less_than
integer
Any positive integer
Request forms that have an Account Engagement ID less than the specified number.
Request forms that were last updated before the specified time.
Parameters to Specify Which Results Are Returned
Use these parameters to specify which forms to return, and how the forms are sorted.
Parameter
Type
Possible Values
Description
limit
integer
Any integer from 1 through 200.
The number of forms to return. Default value is 200.
offset
integer
Any positive integer
The number of forms to omit from the response (the number to “skip over”). Example: Retrieve a list of forms, omitting the 50 most recently updated forms. Sort the query by the updated_at field and use offset=50: /api/form/version/4/do/query?sort_by=updated_at&offset=50
sort_by
string
created_at, id, updated_at
The field by which the results are sorted. See Sort Order.
sort_order
string
ascending, descending
The sort order. The default value depends on which sort_by parameter you specify. See Sort Order.
Sort Order
Use sort_by to specify which field Account Engagement uses to sort the results. Different fields have different default sort orders.
Value
Default Sort Order
Description
created_at
descending
Sort the results by the forms’ created_at timestamps.
id
ascending
Sort the results by the forms’ id fields.
updated_at
descending
Sort the results by the forms’ updated_at timestamps.
Form Read
Request information for a single form.
URI
1/api/form/version/4/do/read/id/<ID>
Replace <ID> with the Account Engagement ID of the form.
Example
Request information about the form with ID 1234.
1/api/form/version/4/do/read/id/1234
XML Response
The XML response for a query request contains information for multiple forms. The XML response for a read request contains information for a single form.
Contains the information about the forms that match the parameters specified in your query.
<total_results>
Contains the number of forms selected by the query. Note: The query request returns a maximum of 200 forms. If your query matches more than 200 forms, you can make several requests to retrieve all matching forms.
<form>
The information about an individual form. See Form in Object Field References for a complete description of fields.