- 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
List Webhooks
Production
Production
GET
https://api.msaaq.com/v1/admin/webhooks
Last modified:2024-10-18 12:26:48
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}}
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 GET 'https://api.msaaq.com/v1/admin/webhooks' \
--header 'Accept: application/json' \
--header 'X-Tenant: academy.msaaq.com' \
--header 'Content-Type: text/plain' \
--data-raw ''
Responses
🟢200Success
application/json
Body
data
array[object (Webhook) {3}]
required
id
integer
required
url
string
required
events
array[object (Event) {2}]
required
links
object (Links)
required
first
string
required
last
string
required
prev
null
required
next
null
required
meta
object (Meta)
required
current_page
integer
required
from
integer
required
last_page
integer
required
links
array [object {3}]
required
path
string
required
per_page
integer
required
to
integer
required
total
integer
required
Example
{
"data": [
{
"id": 11,
"url": "https://hooks.zapier.com/hooks/standard/16012896/4cc69c2a6f0047b4bfe302bb3d858a2d/",
"events": [
{
"id": 3,
"name": "member_created"
}
]
},
{
"id": 3,
"url": "https://hooks.zapier.com/hooks/standard/8841266/e159f035a7224b4a9ec9e8506fc9db45/",
"events": [
{
"id": 3,
"name": "member_created"
}
]
}
],
"links": {
"first": "https://api.msaaqdev.com/v1/admin/webhooks?page=1",
"last": "https://api.msaaqdev.com/v1/admin/webhooks?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« السابق",
"active": false
},
{
"url": "https://api.msaaqdev.com/v1/admin/webhooks?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "التالي »",
"active": false
}
],
"path": "https://api.msaaqdev.com/v1/admin/webhooks",
"per_page": 15,
"to": 2,
"total": 2
}
}
Modified at 2024-10-18 12:26:48