Skip to content

PR to add room meeting details endpoint #129

Closed
sQu4rks wants to merge 2 commits into
WebexCommunity:masterfrom
sQu4rks:issue-111
Closed

PR to add room meeting details endpoint #129
sQu4rks wants to merge 2 commits into
WebexCommunity:masterfrom
sQu4rks:issue-111

Conversation

@sQu4rks

@sQu4rks sQu4rks commented Jul 11, 2020

Copy link
Copy Markdown
Contributor

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

@cmlccie cmlccie left a comment

Copy link
Copy Markdown
Collaborator

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

sQu4rks commented Jul 13, 2020

Copy link
Copy Markdown
Contributor Author

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