Azeer API Documentation
  1. Webhooks
Azeer API Documentation
  • Welcome 👋
  • API Authentication
  • API Endpoints
    • Messages
      • Messages Overview
      • Get Templates List
      • Send a Template Message
      • Send a Text Message
      • Send a Document
      • Send an Image
    • Agents
      • List All Agents
      • Get an Agent Details
      • Assign Contact to an Agent
    • Contacts
      • Create a Contact
      • Get Contact Details
    • Webhooks
      • Webhooks Overview
      • List All Webhooks
        GET
      • Get Webhook Details
        GET
      • Create Webhook
        POST
      • Delete Webhook
        DELETE
    • Tags
      • Create a Tag
      • List All Tags
      • Adding Tag to a Contact
  1. Webhooks

List All Webhooks

GET
https://api.mottasl.ai/v1/webhook/
Last modified:2025-12-10 12:38:25
Get a list of all registered webhooks events within your business

Request

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

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.mottasl.ai/v1/webhook/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "data": {
        "core_webhook": [
            {
                "contact": {
                    "id": 0,
                    "is_agent": true,
                    "display_name": "string"
                },
                "id": 0,
                "name": "string",
                "description": "string",
                "url": "string",
                "event": "string",
                "securetoken": "string",
                "policy": "string",
                "enabled": true,
                "created_at": "string",
                "updated_at": "string"
            }
        ],
        "core_webhook_aggregate": {
            "aggregate": {
                "count": 0
            }
        }
    },
    "message": "string",
    "success": true
}
Modified at 2025-12-10 12:38:25
Previous
Webhooks Overview
Next
Get Webhook Details
Built with