Create Courses
Creates one or more courses using the provided attributes
Creates one or more courses using the provided attributes.
POST
https://example.thoughtindustries.com/incoming/v2/content/course/createExample request
curl -X POST "https://example.thoughtindustries.com/incoming/v2/content/course/create" \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"courseAttributes": []
}'Parameters
| Name | Type | Required | Location | Description |
|---|---|---|---|---|
courseAttributes | CourseAttributes[] | Yes | body | Array of attribute objects defining the courses to create. |
Example response
{
"data": {
"APICreateCourses": {}
}
}