Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class AuthenticationMethodCreateRequest
/// <summary>
/// Applies to email webauthn authenticators only. The relying party identifier.
/// </summary>
[JsonProperty("relying_party_indentifier")]
[JsonProperty("relying_party_identifier")]
public string RelyingPartyIdentifier { get; set; }
}
}
Expand Down
3 changes: 2 additions & 1 deletion tests/Auth0.ManagementApi.IntegrationTests/UsersTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,8 @@ public async Task Test_authentication_methods_crud()
var newAuthenticationMethod = await fixture.ApiClient.Users.CreateAuthenticationMethodAsync(fixture.User.UserId, new Models.Users.AuthenticationMethodCreateRequest
{
Type = "email",
Email = "[email protected]"
Email = "[email protected]",
RelyingPartyIdentifier = "identifier"
});

newAuthenticationMethod.Type.Should().Equals("email");
Expand Down
Loading