FileItemDTO |
FileWebService.add(String sid,
FileItemDTO file,
InputStream stream) |
to add a folder to the private drive, set parentId = 0 and isOwner to 1/true and
externalUserId/externalUserType to a valid USER
|
ServiceResult |
GroupWebService.add(String sid,
String name) |
add a new group
|
RoomDTO |
RoomWebService.add(String sid,
RoomDTO room) |
Adds a new ROOM like through the Frontend
|
UserDTO |
UserWebService.add(String sid,
UserDTO user,
Boolean confirm) |
Adds a new User like through the Frontend, but also does activates the
Account To do SSO see the methods to create a hash and use those ones!
|
ServiceResult |
GroupWebService.addRoom(String sid,
Long id,
Long roomid) |
Adds a room to an group
|
ServiceResult |
GroupWebService.addUser(String sid,
Long id,
Long userid) |
Add USER to a certain group
|
ServiceResult |
WbWebService.cleanSlide(String sid,
long roomId,
long wbId,
int slide) |
This method will do the same as clean slide in the room (except for there will be no UNDO)
|
ServiceResult |
RoomWebService.cleanWb(String sid,
long id) |
Deprecated.
|
ServiceResult |
WbWebService.cleanWb(String sid,
long roomId,
long wbId) |
This method will do the same as clean WB in the room (except for there will be no UNDO)
|
ServiceResult |
RoomWebService.close(String sid,
long id) |
Method to remotely close rooms.
|
ServiceResult |
RoomWebService.count(String sid,
Long roomId) |
Returns the count of users currently in the ROOM with given id
|
ServiceResult |
CalendarWebService.delete(String sid,
Long id) |
delete a calendar event
If the given sid is from an Administrator or Web-Service USER, the USER
can delete any appointment.
|
ServiceResult |
FileWebService.delete(String sid,
Long id) |
deletes files or folders based on it id
|
ServiceResult |
GroupWebService.delete(String sid,
long id) |
Deletes a group
|
ServiceResult |
RecordingWebService.delete(String sid,
Long id) |
Deletes a recording
|
ServiceResult |
RoomWebService.delete(String sid,
long id) |
Delete a room by its room id
|
ServiceResult |
UserWebService.delete(String sid,
long id) |
Delete a certain user by its id
|
ServiceResult |
FileWebService.deleteExternal(String sid,
String externalType,
String externalId) |
deletes a file by its external Id and type
|
ServiceResult |
UserWebService.deleteExternal(String sid,
String externalType,
String externalId) |
Delete a certain user by its external user id
|
List<GroupDTO> |
GroupWebService.get(String sid) |
Get the list of all groups
|
List<UserDTO> |
UserWebService.get(String sid) |
Lists all users in the system!
|
List<FileItemDTO> |
FileWebService.getAllExternal(String sid,
String externalType) |
Get all files by external type
|
AppointmentDTO |
CalendarWebService.getByRoom(String sid,
long roomid) |
Load a calendar event by its room id
|
List<AppointmentDTO> |
CalendarWebService.getByTitle(String sid,
String title) |
Search a calendar event for the current SID
|
List<RecordingDTO> |
RecordingWebService.getExternal(String sid,
String externalType,
String externalId) |
Gets a list of recordings created by particular external USER
|
RoomDTO |
RoomWebService.getExternal(String sid,
String type,
String externalType,
String externalId,
RoomDTO room) |
Checks if a room with this exteralId + externalType does exist,
if yes it returns the room id if not, it will create the room and then
return the room id of the newly created room
|
List<RecordingDTO> |
RecordingWebService.getExternalByRoom(String sid,
Long roomId) |
Get list of recordings
|
List<RecordingDTO> |
RecordingWebService.getExternalByType(String sid,
String externalType) |
Gets a list of recordings
|
List<RoomDTO> |
RoomWebService.getPublic(String sid,
String type) |
Returns an Object of Type RoomsList which contains a list of
ROOM-Objects.
|
FileExplorerObject |
FileWebService.getRoom(String sid,
long roomId) |
Get a File Explorer Object by a given ROOM
|
RoomDTO |
RoomWebService.getRoomById(String sid,
Long id) |
returns a conference room object
|
List<FileItemDTO> |
FileWebService.getRoomByParent(String sid,
long roomId,
long parentId) |
|
ServiceResult |
UserWebService.getRoomHash(String sid,
ExternalUserDTO user,
RoomOptionsDTO options) |
Sets the SessionObject for a certain SID, after setting this
Session-Object you can use the SID + a RoomId to enter any Room.
|
UserSearchResult |
GroupWebService.getUsers(String sid,
long id,
int start,
int max,
String orderby,
boolean asc) |
Search users and return them
|
ServiceResult |
RoomWebService.hash(String sid,
InvitationDTO invite,
boolean sendmail) |
Method to get invitation hash with given parameters
|
ServiceResult |
RoomWebService.kick(String sid,
long id,
String externalType,
String externalId) |
kick external USER from given room
|
ServiceResult |
RoomWebService.kickAll(String sid,
long id) |
kick all uses of a certain room
|
FileItemDTO |
FileWebService.move(String sid,
long id,
long roomId,
long parentId) |
move a file or folder
|
AppointmentDTO |
CalendarWebService.next(String sid) |
Get the next Calendar event for the current USER of the SID
|
AppointmentDTO |
CalendarWebService.nextForUser(String sid,
long userid) |
Get the next Calendar event for userId
|
ServiceResult |
RoomWebService.open(String sid,
long id) |
Method to remotely open rooms.
|
List<AppointmentDTO> |
CalendarWebService.range(String sid,
Calendar start,
Calendar end) |
Load appointments by a start / end range for the current SID
|
List<AppointmentDTO> |
CalendarWebService.rangeForUser(String sid,
long userid,
Calendar start,
Calendar end) |
Load appointments by a start / end range for the userId
|
ServiceResult |
GroupWebService.removeUser(String sid,
Long id,
Long userid) |
Remove USER from a certain group
|
FileItemDTO |
FileWebService.rename(String sid,
long id,
String name) |
update a file or folder name
|
ServiceResult |
WbWebService.resetWb(String sid,
long id) |
This method will remove all whiteboards from given room
and create empty one(s) for room files specified
|
AppointmentDTO |
CalendarWebService.save(String sid,
AppointmentDTO appointment) |
Create an appointment
|
ServiceResult |
WbWebService.uploadWb(String sid,
String type,
String data) |
This method will receive WB as binary data (png) and store it to temporary PDF/PNG file
unlike other web service methods this one uses internal client sid
NOT web service sid
|
List<UserDTO> |
RoomWebService.users(String sid,
Long roomId) |
Returns list of users currently in the ROOM with given id
|