- Getting Started
- Integration Guides
- APIs
- OAuth
- Admin
- Auth
- Teams
- Academies
- Dashboards
- Members
- Courses
- 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
Grant access by email
Production
Production
POST
https://api.msaaq.com/v1/admin/members/access
Last modified:2025-03-25 12:39:59
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
email
string
required
Example:
name@example.com
products
array [object {2}]
required
id
string
required
type
enum<string>
required
Allowed values:
courseproduct
first_name
string | null
optional
last_name
string | null
optional
password
string | null
optional
phone_code
string | null
optional
phone
string | null
optional
with_auth_url
boolean
optional
Example
{
"email": "name@example.com",
"products": [
{
"id": "12343",
"type": "product"
},
{
"id": "423234",
"type": "course"
}
],
"first_name": "Alex",
"last_name": "Towne",
"password": null,
"phone_code": "966",
"phone": "575315110",
"with_auth_url": true
}
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 POST 'https://api.msaaq.com/v1/admin/members/access' \
--header 'Accept: application/json' \
--header 'X-Tenant: academy.msaaq.com' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "name@example.com",
"products": [
{
"id": "12343",
"type": "product"
},
{
"id": "423234",
"type": "course"
}
],
"first_name": "Alex",
"last_name": "Towne",
"password": null,
"phone_code": "966",
"phone": "575315110",
"with_auth_url": true
}'
Responses
🟢200Success
application/json
Body
message
object (SuccessResponseMessage)
required
title
string | null
optional
body
string
required
data
object
required
new_account_created
boolean
required
granted_access_count
integer
required
auth_url
string | null
optional
with_auth_url
is true. A passwordless login link for the member.member
object (MemberResource)
required
Example
{
"message": {
"body": "تمّ منح المتدرب الوصول المطلوب."
},
"data": {
"new_account_created": false,
"granted_access_count": 0,
"auth_url": "https://academy.example.com/passwordless?url=https%3A%2F%2Fmsaaq.test%2Fv1%2Ftenant%2Fauth%2Fpasswordless%3Facademy_id%3D1%26expires%3D1742907118%26user_id%3D551149%26signature%3D841aafd123cd6d54595d4e6bf454fe605e3768643ed02c7ba2e6c7d308899081&success_redirect_url=%2F",
"member": {
"id": 551149,
"first_name": "Alex",
"last_name": "Towne",
"name": "Alex Towne",
"english_name": null,
"username": "52a9ba7b-9f3e-4adc-8aea-8e304046cee6",
"avatar": null,
"points": 0,
"bio": null,
"job_title": null,
"education": null,
"url": "https://msaaqacademy.test/@52a9ba7b-9f3e-4adc-8aea-8e304046cee6",
"courses_count": null,
"products_count": null,
"total_purchases": null,
"orders_count": null,
"national_id": null,
"country_code": null,
"currency": "",
"gender": null,
"skills": null,
"email": "name@example.com",
"phone_code": 966,
"phone": 575315110,
"international_phone": "966575315110",
"dob": null,
"email_verified_at": null,
"phone_verified_at": null,
"is_verified": false,
"status": "active",
"newsletter_status": "subscribed",
"newsletter_subscribed_at": "2024-07-18 16:10:45",
"newsletter_unsubscribed_at": null,
"balance": "0.00",
"last_seen_at": null,
"updated_at": "2025-03-25 15:14:39",
"created_at": "2025-03-25 15:14:39",
"meta": null
}
}
}
Modified at 2025-03-25 12:39:59