auth0.net: Missing supported field in UserBase
In src/Auth0.ManagementApi/Models/UserBase.cs there is no property which translates to “verify_email” parameter, when making POST request to /api/v2/users, as described here: Create user API.
Please add the following property
[JsonProperty("verify_email")] public bool? VerifyEmail { get; set; }
in src/Auth0.ManagementApi/Models/UserBase.cs
About this issue
- Original URL
- State: closed
- Created 7 years ago
- Comments: 24 (14 by maintainers)
Commits related to this issue
- Add VerifyEmail field. References #152 — committed to auth0/auth0.net by jerriep 7 years ago
BTW, I tested the same sequence as you - creating and then updating the user - and that did not trigger any email for me, so I do not think that is the case
@arieradle
OK, V3.8.0 is available: https://www.nuget.org/packages/Auth0.ManagementApi/3.8.0
I’ll look into this…