Only supported on Mattermost for now.
bluejeans- Displays help.bluejeans_create- Create a meeting.bluejeans_list- List meetings of a user.bluejeans_cancel- Cancel a meeting.
We need App Key and App Secret that can be created under ADMIN > OAUTH ACCESS in your BlueJeans dashboard. Follow "Client Grant Type" section to create them.
After you've the credentials, we need two secrets named bluejeansAppKey & bluejeansAppSecret with your credentials as their values. You can create them by running /nc secret_create.
To start a meeting where anyone with the link can join:
/nc bluejeans_createTo create a meeting with joe@example.com & judy@example.com:
/nc bluejeans_create -title "A new beginning" -emails "joe@example.com,judy@example.com" -start "03/01/20 18:00" -end "03/01/20 18:30'Where date is in mm/dd/yy format and time is in UTC.
To cancel a meeting:
/nc bluejeans_cancel <meetingId> <cancellationMessage>Both meetingId and cancellationMessage are required.
To list all meetings of admin:
/nc bluejeans_listTo include respective meeting id in the list, pass -detail option.
/nc bluejeans_list -detailYou can also list meetings of a specific user by passing in their user id:
/nc bluejeans_list <userId>This isn't practical, but it's there if you need it until we have a better version.