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