Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR to add room meeting details endpoint #129

Closed
wants to merge 2 commits into from

Conversation

sQu4rks
Copy link
Contributor

@sQu4rks sQu4rks commented Jul 11, 2020

This PR adds a room meeting details endpoint to the webexteamssdk. You can request the meeting details for a room like follows:

from webexteamssdk import WebexTeamsAPI

api = WebexTeamsAPI()

ROOM_ID = "<Add room id here>"

room = api.rooms.get(ROOM_ID)
print(str(room))

meeting_details = api.room_meeting_details.get(ROOM_ID)
print(str(meeting_details))

This resolves #111

Copy link
Collaborator

@cmlccie cmlccie left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sQu4rks, I would like to keep the Rooms API endpoints in the same module and class. Please see a proposed alternate implementation in PR #130

@sQu4rks
Copy link
Contributor Author

sQu4rks commented Jul 13, 2020

Closing as the alternative implementation from @cmlccie has been merged.

@sQu4rks sQu4rks closed this Jul 13, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Get Room Meeting Details missing
2 participants