curl --request POST \
--url http://localhost:3000/api/admin/user \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"email": "[email protected]",
"fname": "<string>",
"lname": "<string>",
"status": "active",
"plan": "free",
"accountType": "user",
"password": "<string>",
"institution": "<string>",
"credits": 123,
"picture": "<string>",
"remember_history_count": 123,
"mustChangePassword": true
}
'