From e6f7f88785fd1a728381a0b861387032b8b2a827 Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Mon, 11 Mar 2024 20:03:14 +0100 Subject: [PATCH] Update example project --- src/StoneRed.NetificationApi.Example/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/StoneRed.NetificationApi.Example/Program.cs b/src/StoneRed.NetificationApi.Example/Program.cs index ef22d51..48316ff 100644 --- a/src/StoneRed.NetificationApi.Example/Program.cs +++ b/src/StoneRed.NetificationApi.Example/Program.cs @@ -73,9 +73,9 @@ notificationApiClient.RequestNotifications(5); Console.WriteLine("Notifications requested"); Console.WriteLine("Identify user"); -await notificationApiServer.Identify(new IdentifyUserData +await notificationApiServer.Identify(userId, new IdentifyUserData { - UserId = userId + Email = "example@example.com" }); Console.WriteLine("User identified");