Skip to content

Supported Calls

Derek Stegelman edited this page Jul 10, 2016 · 2 revisions

Rocket-Python supports certain calls from the Rocketchat API.

Documentation below assumes you have initialized an API object with proper settings:

from rocketchat.api import RocketChatAPI

api = RocketChatAPI(settings=my_settings_dict)

List of Public Rooms

rooms = api.get_public_rooms()

Send a message

api.send_message('123212', 'Test message')
Clone this wiki locally