Versions Compared

Key

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

Method parameters

Returns all the groups in a list that can be viewed by the user who performed a Login via accessKey.

  • string GetGroups(stringaccessKey, int listID)
    • accessKey: access key obtained using the Login method
    • listID: ID of the desired list

Sample GetGroups response

Code Block
languagehtml/xml
linenumberstrue
<GetGroupResult>
<errorCode>0</errorCode>
<errorDescription></errorDescription>
<list>
<listID>1</listID>
<listName>Demo</listName>
</list> 
<groups>
<group>
<groupID>1</groupID>
<groupName>Demo</groupName>
</group>
</groups>
</GetGroupResult> 

...