Versions Compared

Key

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

...

Many programming environments support consuming WSDL to create a “proxy class”. This process greatly simplified implementation of the API because the proxy class allows easy single line interactions with the API, rather than needing to manually compose XML requests, and manually parse XML responses.

General User Flow

Generally speaking, the API is used to create a “user profile” interface that allows users to update their profile, and adjust subscriptions. Developers will typically implement the API following the following type of flow:

  1. User signs in

  2. User profile is retrieved using GetUser(), GetUserByEmail(), or GetUserBySSOID()

  3. The user profile is formatted and displayed on-screen

  4. Changes to the user profile fields are created by calling the UpdateField() function

  5. Changes to subscriptions are created using CreateSubscription() or DeleteSubscription()

  6. Once changes are complete, the user profile is retrieved again using GetUser(), GetUserByEmail(), or GetUserBySSOID() and displayed on-screen.

Our API was designed with primitive values as inputs and outputs to simplify implementation. The only exception is the User object returned by GetUser(), GetUserByEmail(), or GetUserBySSOID(). This was done by design to limit the “chatty-ness” of the API requests, and avoid the developer from having to construct complex objects as inputs.

Dashboard Configuration

Before implementing the API, we strongly encourage completing the Dashboard Configuration of your system. Specifically, it is very important that:

...

The SendSMS() and SendEmail() functions allow validation that an email address or phone number is actually owned by the user. These functions can be used to send a verification code to the user. The implementation of the verification code functionality is left up to the developer using the API.

...