querySubmissionsByNamespace( )


Creates a query to retrieve a list of submissions.

The querySubmissionsByNamespace() method builds a query to retrieve a list of submissions from the specified namespace and returns a SubmissionsQueryBuilder object.

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

The returned object contains the query definition, which is typically used to run the query using the find() method.

You can refine the query by chaining SubmissionsQueryBuilder methods onto the query. SubmissionsQueryBuilder methods enable you to sort, filter, and control the results that querySubmissionsByNamespace() returns.

The following SubmissionsQueryBuilder methods are supported for querySubmissionsByNamespace(). For a full description of the Submissions object, see the object returned for the items property in SubmissionsQueryResult.

PROPERTYSUPPORTED FILTERS & SORTING
_idascending(),descending()
formIdascending(),descending()
namespaceeq()
statusascending(),descending()
_createdDateascending(),descending()
_updatedDateascending(),descending()
seenascending(),descending()
Authentication

This function requires elevated permissions and runs only on the backend and on dashboard pages.

Permissions
Manage Submissions
Manage Orders
Read Orders
Read Submissions
Learn more about app permissions.
Method Declaration
Copy
Method Parameters
optionsQuerySubmissionsByNamespaceOptions

Query options.

Returns
Was this helpful?
Yes
No