• Sends information about a user to Pinpoint. Sending user information allows you to associate a user to their user profile and activities or actions in your application. Activity can be tracked across devices & platforms by using the same userId.

    Parameters

    Returns Promise<void>

    A promise that will resolve when the operation is complete.

    Throws

    service: UpdateEndpointException - Thrown when the underlying Pinpoint service returns an error.

    Throws

    validation: InAppMessagingValidationErrorCode - Thrown when the provided parameters or library configuration is incorrect, or if In App messaging hasn't been initialized.

    Example

    // Identify a user with Pinpoint
    await identifyUser({
    userId,
    userProfile: {
    email: 'userEmail@example.com'
    customProperties: {
    phoneNumber: ['555-555-5555'],
    },
    }
    });

    Example

    // Identify a user with Pinpoint specific options
    await identifyUser({
    userId,
    userProfile: {
    email: 'userEmail@example.com'
    customProperties: {
    phoneNumber: ['555-555-5555'],
    },
    demographic: {
    platform: 'ios',
    timezone: 'America/Los_Angeles'
    }
    },
    options: {
    address: 'device-address',
    optOut: 'NONE',
    userAttributes: {
    interests: ['food']
    },
    },
    });