You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following error occurs, however, the registrant is added to the meeting roster.
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/websites/domains/stoicagilist.com/system/lib/python3.10/site-packages/pyzoom/_client.py", line 121, in add_meeting_registrant
return schemas.RegistrantConfirmation(
File "pydantic/main.py", line 341, in pydantic.main.BaseModel.__init__
pydantic.error_wrappers.ValidationError: 1 validation error for RegistrantConfirmation
join_url
field required (type=value_error.missing)
I tried adding the join url to the parameter list (join_url='https://us02web.zoom.us/j/XXXX?pwd=XXXX'), since it is different from the registration url, but the result was the same.
(PS. Thank you for this excellent library. It has saved me hours of coding!)
Edited to add information...
As I worked to add more functionality to my project, specifically add_and_confirm_registrant, this error became more problematic. The "fix" for me so far has been to change the following code in schemas.py:
From the command line:
The following error occurs, however, the registrant is added to the meeting roster.
I tried adding the join url to the parameter list (
join_url='https://us02web.zoom.us/j/XXXX?pwd=XXXX'
), since it is different from the registration url, but the result was the same.(PS. Thank you for this excellent library. It has saved me hours of coding!)
Edited to add information...
As I worked to add more functionality to my project, specifically
add_and_confirm_registrant
, this error became more problematic. The "fix" for me so far has been to change the following code inschemas.py
:To:
Without this change I was able to add a registrant, but could not approve them programmatically.
The text was updated successfully, but these errors were encountered: