Share Groups
A ShareGroup is a way for you to store and name groups of email contacts to be used for sending share and inbox invitations.
List Share Groups
SDK Function
ShareGroup.list()
Return Object
ListIterator<ShareGroup>
Authorization Requirement
Available to all authenticated keys or sessions.
Function Arguments
| Argument | Description |
|---|---|
| user_id int64 | User ID. Provide a value of 0 to operate the current session's user. |
Additional Arguments
Show Share Group
SDK Function
ShareGroup.find()
Return Object
ShareGroup
Authorization Requirement
Available to all authenticated keys or sessions.
Function Arguments
| Argument | Description |
|---|---|
| id int64 Required | Share Group ID. |
Create Share Group
SDK Function
ShareGroup.create()
Return Object
ShareGroup
Authorization Requirement
Available to all authenticated keys or sessions.
Function Arguments
| Argument | Description |
|---|---|
| user_id int64 | User ID. Provide a value of 0 to operate the current session's user. |
| notes string | Additional notes of the share group |
| name string Required | Name of the share group |
| members array(object) Required | A list of share group members. |
Update Share Group
SDK Function
shareGroup.update();
Return Object
ShareGroup
Authorization Requirement
Available to all authenticated keys or sessions.
Attribute Setters
| Setter | Description |
|---|---|
| setNotes string | Additional notes of the share group |
| setName string | Name of the share group |
| setMembers array(object) | A list of share group members. |
Delete Share Group
SDK Function
shareGroup.delete();
Return Object
No return value.
Authorization Requirement
Available to all authenticated keys or sessions.
The ShareGroup Object
Some of the functions above return a ShareGroup object. The attributes of this object are listed below.
| Attribute | Description |
|---|---|
| id int64 | Share Group ID |
| name string | Name of the share group |
| notes string | Additional notes of the share group |
| user_id int64 | Owner User ID |
| members array(object) | A list of share group members |