User
Properties
| Name | Type | Required | Example / Values |
|---|---|---|---|
| object | |||
| id | integer (int64) | optional | Example: 10 |
| username | string | optional | Example: "theUser" |
| firstName | string | optional | Example: "John" |
| lastName | string | optional | Example: "James" |
| string | optional | Example: "[email protected]" | |
| password | string | optional | Example: "12345" |
| phone | string | optional | Example: "12345" |
| userStatus | integer (int32) | optional | User Status Example: 1 |
Example
{
"id": 10,
"username": "theUser",
"firstName": "John",
"lastName": "James",
"email": "[email protected]",
"password": "12345",
"phone": "12345",
"userStatus": 1
}Used In
POST
/userPOST
/user/createWithListGET
/user/{username}PUT
/user/{username}