userCreate
POST https://{{apiDomain}}/{{mode}}/user/{{sessionID}}
Allows users to be created.
Required field(s): username, email, password
Success: All three required fields have data. User gets created and call returns message indicating that an user has been created.
Error: Username/Password/First Name is missing, causing the call to return an error message. User does not get created.
Request Body
{"username"=>"{{username}}", "email"=>"{{username/email}}", "password"=>"{{password}}"}
RESPONSES
status: OK
{"success":"false","errorlevel":"1","action":"user create","message":"username, email, and password are required to create a user.","executionTime":225,"mode":"development","debug":false}