Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The getUserSubmissions operation retrieves all submissions for all the forms belonging to the account. 

Code Block
languagexml
titlegetUserSubmissions
<jotform.getUserSubmissions>
    <limit>{$ctx:limit}</limit>
    <orderBy>{$ctx:orderBy}</orderBy>
    <offset>{$ctx:offset}</offset>
	<filter>{$ctx:filter}</filter>
</jotform.getUserSubmissions>
Properties
  • limit: The number of results in each result set for submission data.
  • orderBy: The order value in which the results are ordered.
  • offset: The page value of each result set for submission data.
  • filter: The query results to fetch a specific submissions range.
  
Anchor
request
request
Sample request

...

Code Block
languagexml
titleSample Request for getUserSubmissions
{
	"apiUrl" : "https://api.jotform.com",
    "apiKey" : "f71e12ef09ef7941b8b19b80e5173d26",
	"offset" : "0",
	"limit" : "2",
	"filter" : "",
	"orderBy" : "id"
}
Info
titleNote

There are optional parameters available. For more information on the usage of these parameters please check the API document. 

Related JotForm documentation

...