- 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 meeting
Production
Production
PUT
https://api.msaaq.com/v1/admin/courses/100/chapters/188/contents/3698
Last modified:2025-02-12 11:01:39
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
object {0}
Example
{
"title": "add new meeting content",
"type": "meeting",
"premium": 0,
"sort": 5,
"meta": {
"meeting_type": "meeting",
"summary": "meeting summary",
"is_recurring": 1,
"recurrence": {
"end_times": 5,
"type": "weekly"
},
"settings": {
"auto_recording": 0,
"mute_upon_entry": 0
},
"timezone": "Asia/Riyadh",
"duration": 0,
"start_time": "2025-05-05 16:32:00"
}
}
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/3698' \
--header 'Accept: application/json' \
--header 'X-Tenant: academy.msaaq.com' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "add new meeting content",
"type": "meeting",
"premium": 0,
"sort": 5,
"meta": {
"meeting_type": "meeting",
"summary": "meeting summary",
"is_recurring": 1,
"recurrence": {
"end_times": 5,
"type": "weekly"
},
"settings": {
"auto_recording": 0,
"mute_upon_entry": 0
},
"timezone": "Asia/Riyadh",
"duration": 0,
"start_time": "2025-05-05 16:32:00"
}
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-02-12 11:01:39