Versions Compared

Key

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

The FAQs provide some examples and code snippets for common tasks when a third-party application wants to interact with the frevvo server.

...

The submissions feed will retrieve submissions in the submitted and saved states. Submissions in the pending, aborted or waiting states are not returned. Let's say you want to sort submissions that are saved versus those that are submitted. You can use the SubmissionEntry.getState() method. This will return the current state of a SubmissionEntry (SAVED or SUBMITTED). You can use this property to distinguish between your submissions.

Code Block
CategoryFilter f = new CategoryFilter();
Category submitted = new Category(FormsService.FREVVO_STATE_SCHEME, FormsService.SCHEME_STATE_SUBMITTED);
f.addCategory(submitted);
q.addCategoryFilter(f);

What do I do if API submission access fails?

...

You can specify who receives an email reporting the upload status when it is done through the API. The email is sent to the "notificationEmailAddress" that is passed in the API. The email may say something like this if there are errors during the upload:

Code Block
Validation occurred with errors. Users data NOT loaded. Refer to attached CSV data file for validation and/or loading result details.

...