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. The WSDL metadata can be accessed by appending “?WSDL” to the Service Definition URL:

Code Block
https://clientname.apparmor.com/API/Subscribers/Subscribers.asmx?WSDL

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:

...