Robin Docs
  • Overview
  • Fundamentals
  • Messaging with Robin
    • Guides
      • How does Robin Messaging work?
      • Setting up your Robin account
      • Integrating Robin in your Nuxt.js app
      • Adding Users to your Robin App
      • What is the Robin User Token (RUT)?
      • The What and Why: Robin Keys
      • Customizing Robin for your Brand
    • SDKs for UI Kit
      • Robin with Vue
      • Robin with React
      • Robin with Flutter
    • Add Messaging with Core SDKs
      • Javascript
      • Go
      • Python
  • API Reference
  • Robin Messaging Events
  • Samples and Resources
Powered by GitBook
On this page

Was this helpful?

  1. Messaging with Robin
  2. Guides

Adding Users to your Robin App

PreviousIntegrating Robin in your Nuxt.js appNextWhat is the Robin User Token (RUT)?

Last updated 2 years ago

Was this helpful?

Adding users to Robin is quite simple. Create a (RUT) for each user you want to converse with on Robin. Robin identifies users on the platform by their . Fetch those users, then insert them into your Robin app.

For example, your data for a particular user could look like the below.

{
  _id: '18daa0fb59324098b4964996d7739e85',
  first_name: 'John',
  last_name: 'Doe',
  username: 'JohnDoe'
  user_token: 'BLAaUGurGvTewxIGKKrVANhn' // Robin User Token
}

User Privacy and Data Security

You may be concerned about the Robin team or anyone else, for that matter having access to your messages. To negate that, Robin ensures all data sent are secured and fully encrypted. Thereby giving you complete data ownership over your conversations on Robin.

Depending on the security options selected while , your conversations within Robin can either be Moderated or Fully Authenticated.

A fully authenticated Robin App has end-to-end encryption. What this means is neither Robin nor you — except it’s a conversation you’re involved in — will be able to see the conversations that take place on the app.

On the contrary, a moderated Robin account also encrypts conversations. However, as the owner of the Robin app, you’ll be able to see every conversation.

Robin User Token
RUT
What is the Robin User Token (RUT)?
creating your Robin account