- Getting Started
- Integration Guides
- APIs
- OAuth
- Admin
- Auth
- Teams
- Academies
- Dashboards
- Members
- Courses
- Chapters
- Get Course AttendanceGET
- Replicate coursePOST
- Delete CourseDELETE
- Update CoursePOST
- Create CoursePOST
- Get Course statsGET
- Get CourseGET
- Export CoursesPOST
- List CoursesGET
- Videos
- Quizzes
- Taxonomies
- Builder
- Enrollments
- Dowloads
- Tags
- Currencies
- Countries
- Certificates
- Certificates Templates
- Appointments
- Difficulties
- Assigment Members
- Assignments
- Products
- Articles
- Webhooks
- Domains
- Comments
- Reviews
- Orders
- Cancellation Reasons
- Bank Transfers
- Coupons
- Campaigns
- Affiliates
- Msaaq Affiliates
- Settings
- MsaaqPay
- Apps Marketplace
- Academy Verification
- Billing
- Notifications
- Apps
- Search
- Abandoned Carts
- Announcements
- Onboarding
- Forms
- Bank
- Coaching sessions
- Tenant
- Getting Started with Tenant API
- Auth
- Reviews
- Account
- Update login credentials
- Affliates
- Banks
- Change password by signed
- Unsubsribe
- Update Account
- Get order invoice
- Last viewed course/learning path
- List User's Appointments
- User Stats
- List User's Rejected Assignments
- List User's Assignments
- List User's Quizzes
- List User's Upcomming Appointments
- List User's Products
- List User's Courses
- List User's Learning Paths
- Last User's Orders
- Certificates
- Currencies
- Newsletter
- Cart
- Courses
- Payments
- Pages
- Articles
- Instructors
- Taxonomies
- Products
- Appointments
- Get Sitemap
- Get Translations
- Search
- Well Know
- Ping Pong
- Get Tenant Details
Update Quiz
Developing
Production
Production
PUT
https://api.msaaq.com/v1/admin/courses/100/chapters/188/contents/583
Last modified:2025-03-12 00:46:51
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
Accept
string
required
Example:
application/json
X-Tenant
string
required
Example:
{{tenant}}
Body Params application/json
title
string
optional
summary
string
optional
premium
boolean
optional
sort
integer
optional
meta
object
optional
randomised
boolean
optional
show_results
boolean
optional
show_results_at_end
boolean
optional
allow_question_navigation
boolean
optional
allow_retake
boolean
required
duration
integer
optional
passing_score
integer
optional
question_count
integer
optional
start_at
string <date-time>
optional
end_at
string <date-time>
optional
timezone
string
optional
Example
{
"title": "string",
"summary": "string",
"premium": true,
"sort": 0,
"meta": {
"randomised": true,
"show_results": true,
"show_results_at_end": true,
"allow_question_navigation": true,
"allow_retake": true,
"duration": 0,
"passing_score": 0,
"question_count": 0,
"start_at": "2019-08-24T14:15:22Z",
"end_at": "2019-08-24T14:15:22Z",
"timezone": "string"
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.msaaq.com/v1/admin/courses/100/chapters/188/contents/583' \
--header 'Accept: application/json' \
--header 'X-Tenant: academy.msaaq.com' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-03-12 00:46:51