2022-08-13 19:29:08 +02:00
|
|
|
### user-create
|
|
|
|
|
|
|
|
#### POST /user/create
|
|
|
|
> `Content-Type: application/json`
|
|
|
|
>
|
|
|
|
> `{"user_name": "alain", "dept": null, "nom": "alain", "prenom": "bruno", "active": true }`
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
2022-08-21 12:13:57 +02:00
|
|
|
"active": true,
|
|
|
|
"date_created": "2022-08-20T12:00:00.000000+02:00",
|
2022-08-13 19:29:08 +02:00
|
|
|
"date_expiration": null,
|
2022-08-21 12:13:57 +02:00
|
|
|
"date_modif_passwd": "2022-08-20T12:00:00.000000+02:00",
|
2022-08-13 19:29:08 +02:00
|
|
|
"dept": null,
|
2022-08-21 12:13:57 +02:00
|
|
|
"email": "",
|
2022-12-27 09:54:58 +01:00
|
|
|
"id": 11,
|
2022-08-21 12:13:57 +02:00
|
|
|
"last_seen": "2022-08-20T12:00:00.000000+02:00",
|
2022-08-13 19:29:08 +02:00
|
|
|
"nom": "alain",
|
|
|
|
"nom_fmt": "Alain",
|
2022-08-21 12:13:57 +02:00
|
|
|
"nomcomplet": "Bruno Alain",
|
|
|
|
"nomplogin": "ALAIN Bruno (alain)",
|
2022-08-13 19:29:08 +02:00
|
|
|
"nomprenom": "Alain B.",
|
2022-08-21 12:13:57 +02:00
|
|
|
"prenom": "bruno",
|
|
|
|
"prenom_fmt": "Bruno",
|
2022-08-13 19:29:08 +02:00
|
|
|
"prenomnom": "B. Alain",
|
2022-08-21 12:13:57 +02:00
|
|
|
"roles_string": "",
|
|
|
|
"status_txt": "actif",
|
|
|
|
"user_name": "alain"
|
2022-08-13 19:29:08 +02:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|