-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Description
onlyoffice_docspace
URLs
Polling Sources
new-file
Prompt
Emit new event when a file is created in a room or folder. Requires props: room or folder id (optional).
new-folder
Prompt
Emit new event when a folder is created in a room or folder. Requires props: room or folder id (optional).
new-user-added
Prompt
Emit new event when a new user is added. No required props.
Actions
create-room
Prompt
Creates a new room in the OnlyOffice Docspace portal. Required props are 'room_name', that defines the name of the room and 'room_size', that can specify storage limit for the room. Optional prop is 'room_type', where you can define the type of the room.
invite-user
Prompt
Invites a new user to the portal. Required props are 'user_email', where you should put the user's email and 'room_id', which is the ID of the room you're inviting the user to. An optional prop could be 'access_level', through which you can specify the access rights for the user (read, write, or admin).
upload-file
Prompt
Uploads a file to the specified room. Required props are 'file' which is the file to be uploaded, and 'room_id', the ID of room where file will be uploaded. Optional props are 'folder_id', the ID of the folder in room where you want file to be uploaded, and 'file_name', the name you want to give to the uploaded file.