GetClientGroups
Returns the groups for the account associated with the supplied token.
Returns – A GroupResponse containing an array of Group 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. |
Example – C#
[gdlr_notification icon=”none” type=”color-border” border=”#31BEF9″ color=”#000000″]
ServiceAPIClient ws = new ServiceAPIClient();
GroupResponse groupResponse;
groupResponse = ws.GetClientGroups(encryptedToken);
[/gdlr_notification]