Update a member of an existing course
DevelopingPATCH
/courses/{courseid}/members/{userId}Only the teacher of this course should be able to perform this action.
E.g. so a teacher can appoint an assistant
Request
Path Params
courseid
string
required
userId
string
required
Query Params
relation
string
required
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
array of:
relation
string
required
user
object
required
userId
string
required
name
string
required
email
string
required
studentNumber
number
optional
Example
[
{
"relation": "string",
"user": {
"userId": "string",
"name": "string",
"email": "string",
"studentNumber": 0
}
}
]
Last modified: 9 months ago