Request
Body Params application/json
{
"username": "admin",
"password": "adminpass",
"full_name": "admin",
"email": "admin@admin.com"
}
Request Code Samples
curl --location --request POST 'http://localhost:8080/v1/users' \
--header 'Content-Type: application/json' \
--data-raw '// {
// "username": "{{$internet.userName}}",
// "password": "{{$internet.password(length=6)}}",
// "full_name": "{{$person.fullName}}",
// "email": "{{$internet.email(provider='\''gmail.com'\'')}}"
// 3_k2kF
// }
{
"username": "admin",
"password": "adminpass",
"full_name": "admin",
"email": "admin@admin.com"
}'
Responses
application/json {
"username": "string",
"full_name": "string",
"email": "string",
"password_changed_at": "string",
"created_at": "string"
}
Modified at 2025-02-27 17:37:02