Skip to main content

UserDTO

DTO representing a user in the system.

idstring

Unique identifier of the user

Example: USR12345
usernamestring

Username used for login

Example: john_doe
firstNamestring

User's first name

Example: John
lastNamestring

User's last name

Example: Doe
emailstring

User's email address

Example: john.doe@example.com
gsmstring

User's mobile phone number

Example: +212612345678
UserDTO
{
"id": "USR12345",
"username": "john_doe",
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"gsm": "+212612345678"
}