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

List My Enrollments

Production
https://api.msaaq.com/v2
Production
https://api.msaaq.com/v2
GET
https://api.msaaq.com/v2
/tenant/me/enrollments
Last modified:2026-01-05 09:40:06
Retrieves a paginated list of the authenticated member's course enrollments.
Results can be filtered by course type, completion status, and sorted by various criteria.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query 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 -g --request GET 'https://api.msaaq.com/v2/tenant/me/enrollments?filters[type]=course&filters[status]=not_completed&filters[sort]=started_recently&per_page=3&page=1' \
--header 'X-Tenant: academy.msaaq.com' \
--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,
            "last_viewed": {
                "chapter_id": 2150,
                "content_id": 5923
            }
        },
        {
            "id": 19344,
            "enrollment_type": "course",
            "course": {
                "id": 2009,
                "title": "دورة 16-7 _ 3",
                "slug": "دورة-16-7-3-1752681290",
                "type": "online",
                "thumbnail": "https://msaaq-dev.s3.eu-central-1.amazonaws.com/courses/7437/fydyw-1-1.jpg",
                "status": "published",
                "meta_title": null,
                "meta_keywords": [],
                "meta_description": null,
                "is_started": true,
                "publish_at": "2025-07-16T15:57:22.000000Z",
                "updated_at": "2025-10-23T13:27:08.000000Z",
                "created_at": "2025-07-16T15:54:50.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-18T10:00:16.000000Z",
            "started_at": "2025-12-18T09:55:36.000000Z",
            "created_at": "2025-12-18T09:44:08.000000Z",
            "completed_at": null,
            "last_viewed": {
                "chapter_id": 2152,
                "content_id": 5929
            }
        },
        {
            "id": 19343,
            "enrollment_type": "course",
            "course": {
                "id": 2119,
                "title": "دورة رغد 9-8",
                "slug": "course-raghad-9-8-1754734942",
                "type": "online",
                "thumbnail": "https://msaaq-dev.s3.eu-central-1.amazonaws.com/courses/7917/fydyw-1-%281%29.jpg",
                "status": "published",
                "meta_title": "عنوانseo",
                "meta_keywords": [],
                "meta_description": "وصف seo",
                "is_started": true,
                "publish_at": "2025-12-02T19:44:16.000000Z",
                "updated_at": "2025-12-08T18:36:12.000000Z",
                "created_at": "2025-08-09T10:22:22.000000Z",
                "is_reviewed": false,
                "settings": {
                    "reviews_enabled": true,
                    "certificate_enabled": true,
                    "disable_comments": false
                }
            },
            "percentage_completed": "13",
            "is_eligible_for_certificate": false,
            "updated_at": "2025-12-18T09:40:10.000000Z",
            "started_at": "2025-12-18T09:38:18.000000Z",
            "created_at": "2025-12-18T09:38:04.000000Z",
            "completed_at": null,
            "last_viewed": {
                "chapter_id": 2235,
                "content_id": 6607
            }
        }
    ],
    "links": {
        "first": "https://api.msaaq.test/v2/tenant/me/enrollments?page=1",
        "last": "https://api.msaaq.test/v2/tenant/me/enrollments?page=11",
        "prev": null,
        "next": "https://api.msaaq.test/v2/tenant/me/enrollments?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 11,
        "links": [
            {
                "url": null,
                "label": "&laquo; السابق",
                "active": false
            },
            {
                "url": "https://api.msaaq.test/v2/tenant/me/enrollments?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": "https://api.msaaq.test/v2/tenant/me/enrollments?page=2",
                "label": "2",
                "active": false
            },
            {
                "url": "https://api.msaaq.test/v2/tenant/me/enrollments?page=3",
                "label": "3",
                "active": false
            },
            {
                "url": "https://api.msaaq.test/v2/tenant/me/enrollments?page=4",
                "label": "4",
                "active": false
            },
            {
                "url": "https://api.msaaq.test/v2/tenant/me/enrollments?page=5",
                "label": "5",
                "active": false
            },
            {
                "url": "https://api.msaaq.test/v2/tenant/me/enrollments?page=6",
                "label": "6",
                "active": false
            },
            {
                "url": "https://api.msaaq.test/v2/tenant/me/enrollments?page=7",
                "label": "7",
                "active": false
            },
            {
                "url": "https://api.msaaq.test/v2/tenant/me/enrollments?page=8",
                "label": "8",
                "active": false
            },
            {
                "url": "https://api.msaaq.test/v2/tenant/me/enrollments?page=9",
                "label": "9",
                "active": false
            },
            {
                "url": "https://api.msaaq.test/v2/tenant/me/enrollments?page=10",
                "label": "10",
                "active": false
            },
            {
                "url": "https://api.msaaq.test/v2/tenant/me/enrollments?page=11",
                "label": "11",
                "active": false
            },
            {
                "url": "https://api.msaaq.test/v2/tenant/me/enrollments?page=2",
                "label": "التالي &raquo;",
                "active": false
            }
        ],
        "path": "https://api.msaaq.test/v2/tenant/me/enrollments",
        "per_page": 3,
        "to": 3,
        "total": 33
    }
}
Modified at 2026-01-05 09:40:06
Next
Get My Enrollments by id
Built with