Links

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.
{
username: "mercy" ,
name: "Mercy Wells" ,
avatar: "urltoavatar.com/mercyavatar.jpg"
}
Field
Type
state
Description
username
string
required
Unique username of the user in your database.
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"
avatar_file
File
optional
Specifies the file of the user's profile avatar. An acceptable image is limited to a JPG, JPEG, or PNG file of up to 5 MB.
Last modified 23h ago