Amplify has re-imagined the way frontend developers build fullstack applications. Develop and deploy without the hassle.

Page updated Feb 21, 2024

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:

const user = await Auth.currentAuthenticatedUser();
// sub is a unique identifier of the authenticated user
const 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:

const userInfo = {
attributes: {
hobbies: ['cooking', 'knitting']
}
};
await Notifications.Push.identifyUser(userId, userInfo);