Skip to content

Commit

Permalink
Serialize the Type as an integer rather than a string when updating…
Browse files Browse the repository at this point in the history
… a user

Resolves #260
  • Loading branch information
Jericho committed Jan 11, 2023
1 parent b65b897 commit 6b0e149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ZoomNet/Resources/Users.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public Task UpdateAsync(string userId, string firstName = null, string lastName
{ "pronouns", pronouns },
{ "pronouns_option", pronounsDisplay?.ToEnumString() },
{ "timezone", timezone?.ToEnumString() },
{ "type", type?.ToEnumString() },
{ "type", type },
{ "use_pmi", usePmi },
{ "vanity_name", personalMeetingRoomName },
{ "custom_attributes", customAttributes?.ToArray() }
Expand Down

0 comments on commit 6b0e149

Please sign in to comment.