GetGroupUsers

Returns the Group Users based on the group Id.

Returns – A GroupUserResponse containing an array of GroupUser Object(s).  (See SessionResponse in Appendix B)

Parameters

Name Type Description
encryptedToken string Required. Encrypted Token returned from client authentication.
Returns null if encryptedToken has expired or is invalid.
groupId string Required. The group Id.

 

Example – C#
[gdlr_notification icon=”none” type=”color-border” border=”#31BEF9″ color=”#000000″]
ServiceAPIClient ws = new ServiceAPIClient();

GroupUserResponse groupUserResponse;

groupUserResponse = ws.GetGroupUsers(encryptedToken, “groupId”);

[/gdlr_notification]