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

"Busy" status is missing (returns "unknown") #199

Open
kmanwar89 opened this issue Oct 14, 2023 · 0 comments
Open

"Busy" status is missing (returns "unknown") #199

kmanwar89 opened this issue Oct 14, 2023 · 0 comments

Comments

@kmanwar89
Copy link

In recent versions of WebEx teams, there is an option for a user to set a "busy" status, which does not mute notifications but does show "busy" as the presence status.

It seems this status is not returned when polling a user's status (output below from my Raspberry Pi running a Webex Teams status bot that I'm working on):

>>> api.people.get(personId=mywebexid).status
'inactive'
>>>
>>> print ("Changing my status to DND")
Changing my status to DND
>>> 
>>> api.people.get(personId=mywebexid).status
'DoNotDisturb'
>>> 
>>> print ("Changing my status to Busy")
Changing my status to Busy
>>> 
>>> api.people.get(personId=mywebexid).status
'unknown'
>>>
>>> print ("Status returns unknown instead of busy")
Status returns unknown instead of busy

I don't actually see in the official API documentation where the "busy" status can even be retrieved, so is this maybe something that needs to go to the upstream API team?

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

No branches or pull requests

1 participant