Versions Compared

Key

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

Table of Contents

Anchor
_Toc450312423
_Toc450312423
Anchor
_Toc130192573
_Toc130192573
Overview

The Regent 8 Award financial aid system supports third-party integration via a rich and robust API in the form of web services. The Regent Award API covers nearly 100% of all functionality available in our management UI. Interoperability is achieved via the SOAP protocol. The service definitions are provided as WSDL documents.

...


To call this method, you need to construct a GetLoginRequest object with the following properties. GetLoginResponse has the same properties as UpdateLoginResponse — see Creating a User.

Code Block
languagec#
titleGetLoginResponse
public SecurityToken SecurityToken { get; set; } // see Creating a User
public new long? Id { get; set; }
public string Username { get; set; } 

...


This method takes the same UpdateLoginRequest object and returns the same UpdateLoginResponse object as createLogin() — see Creating a User. Prior to making updates, the UpdateLoginRequest.Record should be populated using getLogin() to pick up the current property values— see Getting User Information. Once populated, change the properties to be updated.

...


This method takes the same UpdateLoginRequest object and returns the same UpdateLoginResponse object as createLogin() — see Creating a User.

Anchor
_Toc450312440
_Toc450312440
C# Code Sample

...