POST

Query Submissions By Namespace


Note: This query method uses the new Wix API Query Language syntax. If you're still using the old query syntax with chained query builder methods, see Migrate from SDK Query Builders to Wix API Query Language for guidance. The old query builder methods continue to work.

Note: The Form Submission API only works with the Wix Forms app. Call GetAppInstance to confirm that the app named wix_forms is installed on the site.


Returns a list of up to 100 submissions, given the provided paging, filtering, and sorting.

You can only query submissions from a specified namespace. Use the query filter on the namespace field, otherwise you will receive an error.

For field support for filters and sorting, see Form Submissions: Supported Filters and Sorting.

To learn about working with Query endpoints, see API Query Language, Sorting and Paging, and Field Projection.

PropertyFiltersSort
_id$eq, $in, $ne, $ninSort: ASC, DESC
formId$eq, $in, $ne, $ninSort: ASC, DESC
contactId$eq, $in, $ne, $ninSort: ASC, DESC
namespace$eqNone
status$eq, $in, $ne, $ninSort: ASC, DESC
seen$eq, $neSort: ASC, DESC
_createdDate$eq, $gt, $gte, $in, $lt, $lte, $ne, $ninSort: ASC, DESC
_updatedDate$eq, $gt, $gte, $in, $lt, $lte, $ne, $ninSort: ASC, DESC
submitter.memberId$eq, $in, $ne, $ninSort: ASC, DESC
submitter.visitorId$eq, $in, $ne, $ninSort: ASC, DESC
submitter.applicationId$eq, $in, $ne, $ninSort: ASC, DESC
submitter.userId$eq, $in, $ne, $ninSort: ASC, DESC
orderDetails.checkoutId$eq, $in, $ne, $ninSort: ASC, DESC
Authentication

This method may require higher-level permissions than the caller has, based on their identity and roles and permissions. In these cases, you can ensure the method is called with the required level of authorization by using one of the following:

Permissions
Read Submissions
Learn more about app permissions.
Method Declaration
Copy
Errors

This method doesn't return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?