Update: SDK Version 24.1.0
Hello everyone,
We are pleased to announce an update to our SDK today.
New Features
-
World Invites:
You are now able to create world invites in the same way room invites were generated, exceptworld_id
is set instead ofroom_id
:self.highrise.send_message(<conv_id>, message_type="invite", world_id=<world_id>)
-
Bulk Sending of Messages:
We have enabled bulk sending of messages to multiple users, up to 100 users.self.highrise.send_message_bulk(<user_ids>, message_type="invite", world_id=<world_id>)
This method takes a list of user IDs instead of
conversation_id
, and it supports all types of invites or text messages like the regularsend_message
, with the limitation of the number of users being 100.
We hope you find this new functionality helpful.
Happy coding!