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.

...

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.

...

Code Block
service.loginAs("loginAsUser<LoginAsUser>@<tenant>", "adminuser@tenant<adminuser>@<tenant>"), "????", true, null, null, null, null, Map.of("backdoorLogin", "true"));


Note
titleLoginAsUser Note

In some cases, the user id of the user you will log in as is the same as their email. In this case, the user login will include two '@' symbols, one in the user id, and one between the user id and tenant name. For example, if the user id is 'jsmith@mycompany.com' and your frevvo tenant name is 'mycompany', you will need to supply "jsmith@mycompany.com@mycompany" in the code above.