curl -X GET http://localhost:1337/list_users \
-H "Content-Type: application/json" -H "Content-Length: 24" \
-d '{"user_type": "student"}'
{
"user_list": [
{
"user_name": "john_doe",
"user_type": "admin"
},
],
"has_more": false
}
curl -X GET http://localhost:1337/list_users \
-H "Content-Type: application/json" -H "Content-Length: 24" \
-d '{"user_type": "student"}'
{
"user_list": [
{
"user_name": "john_doe",
"user_type": "admin"
},
],
"has_more": false
}