Custom user ID

Batch can automatically tie several push tokens from different OS' to a single user ID. This allows you to use the Custom Data API. This is also useful if you are planning to use the Transactional API and don't want to manage devices' tokens on your side.

Custom user IDs

This custom user identifier can be:

  • The unique ID you are using in your login system.
  • A stable ID used in your data store (e.g. Firebase, etc).
  • Any stable information that can help you to identify a user (e.g. hashed email address, etc).

Pushing a user identifier will send a notifcation to every installation with that identifier set. That means that one user might get a push on multiple devices at a time.

If you want to only push a specific installation (and thus a specific device), you should set a installation-specific identifier.

Setting up a custom user ID

The API is pretty straightforward:

Batch.User.GetEditor()
    .SetIdentifier("john.doe") // Set to `null` if you want to remove the identifier.
    .Save();

You should remove the identifier anytime the identified user logs out.

User identifiers are case and whitespace sensitive.
If you want to avoid potential issues, you may want to call ToLowerInvariant() and Trim() on the identifier string.

IMPORTANT
Make sure the identifier is unique, otherwise users might get pushes that are not meant for them. You should never associate a custom ID to more than one user.

Choosing a unique identifier

If you are wondering which ID you should use as a custom user identifier, here are a few examples:

Login system

If you have a login system, you probably have a unique user ID associated to the user's account. Simply set this ID as your user identifier, and don't forget to reset it (by setting it to null) when the user logs out.

While emails are an appropriate identifier, we suggest to hash them before setting them as your identifier, for privacy reasons.

PaaS datastore

Your datastore probably has a stable ID associated to your installation. You just need to make sure it is unique between installations, and you are easily able to retreive it from your backend code.

Specific backend and database

Anything that can identify a user uniquely will work. Emails, phone numbers, etc...
We suggest you hash this information before setting it, and use the same hash on your backend.

Otherwise, you will need to create a stable identifier for your app installation and send it to your backend. The most common way to do that is to generate a RFC4122 UUID.