Update Courses
Updates one or more existing courses with the provided attributes
Updates one or more existing courses with the provided attributes.
PUT
https://example.thoughtindustries.com/incoming/v2/content/course/updateExample request
curl -X PUT "https://example.thoughtindustries.com/incoming/v2/content/course/update" \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"courseAttributes": "string"
}'Parameters
| Name | Type | Required | Location | Description |
|---|---|---|---|---|
courseAttributes | UpdateCourseAttributes | Yes | body | Object containing the course fields to update, such as title, description, or settings. |
Example response
{
"data": {
"APIUpdateCourses": {}
}
}