Page updated Nov 14, 2023

Identify user to Amazon Pinpoint

This call identifies the current user (which could be unauthenticated or authenticated) to Amazon Pinpoint. The user ID can be any string which identifies the user in the context of your application.

Get the user ID from Amplify Auth

If the user is signed in through Auth.signIn, then you can retrieve the current user's ID as shown below:

1const user = await Auth.currentAuthenticatedUser();
2
3// sub is a unique identifier of the authenticated user
4const userId = user.attributes.sub;

Identify the user to Amazon Pinpoint

Once you have a string that identifies the current user (either from the Auth category as shown above or through your own application logic), you can identify the user to Amazon Pinpoint with the following:

1const userInfo = {
2 attributes: {
3 hobbies: ['cooking', 'knitting']
4 }
5};
6
7await Notifications.Push.identifyUser(userId, userInfo);