QuickSense API
  • Introduction
  • Authentication
  • Errors
  • Core Resources
    • Enrolments
      • The enrolment object
      • Create a user and add into a course
      • Create a user and add into a classroom
      • Remove user from a course
      • Remove user from a classroom
    • Users
      • The user object
      • Retrieve a user
      • Update a user
      • Delete a user
      • List all users
    • Courses/Classrooms
      • The courses object
      • List all clasrooms/courses
Powered by GitBook
On this page

Was this helpful?

  1. Core Resources
  2. Enrolments

The enrolment object

User enrolment can happen in a variety of ways.

If a new user signs up to your website and has purchased their first course, they are eligible for enrolment!

To register a new user, the following parameters must be sent in the POST request

{
    "FirstName": string,
    "LastName": string,
    "Email": string
}

PreviousEnrolmentsNextCreate a user and add into a course

Last updated 4 years ago

Was this helpful?