Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Method Parameters

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

Method Parameters

  • string CreateGroup(string accessKey, int listID, string groupName, stringgroupNotes)
    • accessKey: access key obtained using the LoginFromID 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

...

Code Block
languagehtml/xml
titleSOAP Response
linenumberstrue
<CreateGroupsResult>
  <errorCode>0</errorCode>
  <errorDescription></errorDescription>
  <list>
    <listID>2</listID>
    <listName>Demo</listName>
    <groups>
      <group>
        <groupID>1</groupID>
        <groupName>Top customers</groupName>
        <groupdNotes>use<groupNotes>use notes for group description</groupNotes>
      </group>
    </groups>
  </list>
</CreateGroupsResult>

...