We advise the use of a developer to help you setup your API connection. We will offer an example of how to CREATE A NEW USER on your LMS using a cURL command.
Let's review the required POST parameters for the core_user_create_users
function:
- wsfunction=core_user_create_users
- users[0][username]= string (The user's unique username)
- users[0][auth]= string (The authentication method, default to "manual")
- users[0][password]= string (The user's password)
- users[0][firstname]= string (The user's first name)
- users[0][lastname]= string (The user's last name)
- users[0][email]= string (The user's email address)
- users[0][createpassword]= integer (Set to 0 if providing a password)
Bringing this altogether: