User
A MinChat user is a person who uses your app or website. they are represented as a JSON object.
Minchat is designed to prioritize the idea that user data belongs to the user, and we only keep it in order to provide an efficient chat service. This means that: MinChat only collects the data necessary for its functionality, and nothing more.
{
id: "8843223323423" ,
name: "Mercy Wells" ,
avatar: "urltoavatar.com/mercyavatar.jpg"
}
Field | Type | state | Description |
---|---|---|---|
id | string | required | Unique ID of the user in your database.
Examples: "8843223323423" , "3232dd23-6955-d23312-d23dd23-443423dd32dd" |
name | string | required | Name of the user.
Example: "Joshua" |
avatar | string | optional | A url to the profile picture of the user.
Example: "urltoavatar.com/mercyavatar.jpg" |
Last modified 4mo ago