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
Describe the bug
Attempting to select from zoom_account_settings fails because the Zoom API has changed and AccountManagedDomains.domains is no longer of type []string.
Steampipe version (steampipe -v)
Steampipe v0.23.2
Plugin version (steampipe plugin list)
1.0.0
To reproduce
Running select * from zoom.zoom_account_settings results in Error: zoom: json: cannot unmarshal object into Go struct field AccountManagedDomains.domains of type string (SQLSTATE HV000).
Expected behavior
Account settings should be returned.
Additional context
Domains is now an array of struct instead of an array of strings, e.g.:
Describe the bug
Attempting to select from
zoom_account_settings
fails because the Zoom API has changed andAccountManagedDomains.domains
is no longer of type[]string
.Steampipe version (
steampipe -v
)Steampipe v0.23.2
Plugin version (
steampipe plugin list
)1.0.0
To reproduce
Running
select * from zoom.zoom_account_settings
results inError: zoom: json: cannot unmarshal object into Go struct field AccountManagedDomains.domains of type string (SQLSTATE HV000)
.Expected behavior
Account settings should be returned.
Additional context
Domains is now an array of struct instead of an array of strings, e.g.:
See https://developers.zoom.us/docs/api/accounts/#tag/accounts/GET/accounts/{accountId}/settings
The text was updated successfully, but these errors were encountered: