{
"username": "JohnDoe",
"password": "secret123",
"confirm_password": "secret123"
}
curl --location --request POST '/adminapi/user/user' \
--header 'access-token: {{access-token}}' \
--header 'refresh-token: {{refresh-token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "JohnDoe",
"password": "secret123",
"confirm_password": "secret123"
}'
{
"code": 200,
"msg": "添加成功"
}