MSAAQ Documentation
Docs
APIs
APIs
  • Admin
  • Tenant
V2
Docs
APIs
APIs
  • Admin
  • Tenant
V2
Status
  1. Enrollments
  • Tenant
    • Me
      • Enrollments
        • List My Enrollments
          GET
        • Get My Enrollments by id
          GET
      • Calendar
        • My Calendar
      • Me enrolled_courses
        GET
      • List User's Appointments
        GET
      • List User's Certificates
        GET
      • List User's quizes
        GET
      • List User's Products
        GET
    • Courses
      • List Courses
      • Get Course by id/slug
    • Learning Path
      • List Learning Paths
      • Get Learning Path by id/slug
  • V2 Health
    GET
  • Schemas
    • Server Error
    • Success Response
Docs
APIs
APIs
  • Admin
  • Tenant
V2
Docs
APIs
APIs
  • Admin
  • Tenant
V2
Status
  1. Enrollments

Get My Enrollments by id

Production
https://api.msaaq.com/v2
Production
https://api.msaaq.com/v2
GET
https://api.msaaq.com/v2
/tenant/me/enrollments/{id}
Last modified:2026-01-05 09:39:42
Retrieves detailed information about a specific enrollment for the authenticated member, including course details, progress, and certificate eligibility.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Header Params

Request Code 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 GET 'https://api.msaaq.com/v2/tenant/me/enrollments/19345' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'

Responses

🟢200
application/json
Body

Examples
{
    "data": {
        "id": 19345,
        "enrollment_type": "course",
        "course": {
            "id": 2007,
            "title": "دورة 16-7",
            "slug": "دورة-16-7-1752681008",
            "type": "online",
            "thumbnail": "https://msaaq-dev.s3.eu-central-1.amazonaws.com/courses/7432/6muqgh-1.jpg",
            "status": "published",
            "meta_title": null,
            "meta_keywords": [],
            "meta_description": null,
            "is_started": true,
            "publish_at": "2025-07-16T15:51:57.000000Z",
            "updated_at": "2025-11-02T13:16:32.000000Z",
            "created_at": "2025-07-16T15:50:08.000000Z",
            "is_reviewed": false,
            "settings": {
                "reviews_enabled": true,
                "certificate_enabled": true,
                "disable_comments": false
            }
        },
        "percentage_completed": "67",
        "is_eligible_for_certificate": false,
        "updated_at": "2025-12-18T14:55:09.000000Z",
        "started_at": "2025-12-18T14:50:48.000000Z",
        "created_at": "2025-12-18T14:50:47.000000Z",
        "completed_at": null,
        "progress": [
            {
                "id": 18719,
                "chapter_id": 2150,
                "content_id": 5921,
                "duration": null,
                "viewed_at": "2025-12-18T14:50:48.000000Z",
                "completed_at": "2025-12-18T14:50:49.000000Z"
            },
            {
                "id": 18721,
                "chapter_id": 2150,
                "content_id": 5922,
                "duration": null,
                "viewed_at": "2025-12-18T14:50:49.000000Z",
                "completed_at": null
            },
            {
                "id": 18720,
                "chapter_id": 2150,
                "content_id": 5923,
                "duration": null,
                "viewed_at": "2025-12-18T14:50:51.000000Z",
                "completed_at": "2025-12-18T14:50:53.000000Z"
            }
        ],
        "last_viewed": {
            "chapter_id": 2150,
            "content_id": 5923
        }
    }
}
Modified at 2026-01-05 09:39:42
Previous
List My Enrollments
Next
My Calendar
Built with