Unlocking Courses

Create User with Tags and Remove Tags

POST Request 
https://yoursystemdomain.com/api/users

headers
"Content-Type": "application/json",
"x-api-key": "{{yourApiTokenHere}}"

Body Json
{
    "email": "[email protected]",
    "tags": [
        "CourseX"
    ],
    "remove_tags": [     
        "CourseZ" ]
}

Remove Users from Course

POST Request 
https://yoursystemdomain.com/api/users

headers
"Content-Type": "application/json",
"x-api-key": "{{yourApiTokenHere}}"

Body Json
{
    "email": "[email protected]",
    "remove_tags": [     
        "CourseZ" ]
}

Last updated