Versions Compared

Key

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

Method Parameters

This method allows you to create a Group within a List.

  • string CreateGroup(string accessKey, int listID, string groupName, string groupNotes)
  • accessKey: access key obtained using the Login method
  • listID: ID of the list that the new Group will belong to
  • groupName: name of the new Group
  • groupNotes: administrative notes for this new Group

Sample CreateGroupsResult response

Code Block
languagehtml/xml
linenumberstrue
<CreateGroupsResult>
<errorCode>0</errorCode>
<errorDescription></errorDescription>
<list>
<listID>1</listID>
<listName>Demo</listName>
<groups>
<group>
<groupID>1</groupID>
<groupName>Demo</groupName>
<groupdNotes>Note Gruppo</groupNotes>
</group>
</groups>
</list>
</CreateGroupsResult>

...