Skip to main content
Version: 1.3.x

User

User is the recipient who can receive notifications from your app. You should use our API or front-end in-app library to create your user in Engagespot, so that Engagespot can deliver notifications to them.

Why Engagespot needs to identify your users?

When you use a third party service like Engagespot to build your multi-channel product notification infrastructure, we manage the delivery, store your user's notification preferences etc. So it is essential that you share your user's details like email, phone number etc to our system. We store your user's information in a highly secure and encrypted environment.

Structure of user data

Every user should have a unique identifier. It could be the auto-increment id from your database, or any other unique value such as their Email or Phone number.

info

The unique identifier you choose for the user should be unique across your entire application. It should never change.

Additional attributes

Along with the unique identifier, a user can have multiple attributes attached to their profile.This could be their Email id, phone number, FCM token, profile picture, name or anything.

Some channels requires certain attributes in the user's profile to work. For example, the SMS channel works only for users who have phoneNumber attribute set in their profile. To read more about profiles, and how to set them, read User Profile guide

Here are some of the attributes that is recommended for your users.

AttributeUsage
firstNameYou can use this field in your templates to personalise your notifications (Eg: Hey {{recipient.firstName}})
emailUsed to deliver emails to the user. If you set your identifier itself as the email, then this property will be auto created.
phoneNumberUsed to deliver SMS and WhatsApp messages. Make sure to use the E.164 format

Creating your users in Engagespot

You can create users in Engagespot via multiple ways.

If you use Engagespot In-App Inbox library in your front-end app such as React, Angular, Vue or any other Javascript stack, the user will be created automatically (Except when secure mode is enabled).

Or else you can use the User REST API or client library to create users from your backend. This method is recommended.

import { EngagespotClient } from '@engagespot/node';

const client = EngagespotClient({
apiKey: 'ENGAGESPOT_API_KEY',
apiSecret: 'ENGAGESPOT_API_SECRET',
});

client.createOrUpdateUser('identifier', {
email: 'xxx@xxx.com',
phoneNumber: '+xxxxxxxxx',
});
caution

If you try to send a notification to a user who is not created in Engagespot, it will be discarded.