AI Integration Quick Reference
AI Integration Quick Reference
Update Group
UseupdateGroup() to modify group details. Pass a Group object with the updated values.
- Update Group
- TypeScript
| Parameter | Description |
|---|---|
group | An instance of Group class with updated values |
Group object with the updated details.
The method returns a Group object. Access the response data using getter methods:
| Field | Getter | Return Type | Description |
|---|---|---|---|
| guid | getGuid() | string | Unique group ID |
| name | getName() | string | Display name of the group |
| type | getType() | string | Group type ("public", "private", or "password") |
| description | getDescription() | string | Description of the group |
| icon | getIcon() | string | URL of the group icon |
| owner | getOwner() | string | UID of the group owner |
| updatedAt | getUpdatedAt() | number | Timestamp when the group was last updated |
Group class, please check here.
Next Steps
Delete Group
Permanently delete a group
Retrieve Groups
Fetch and filter groups with pagination