Azeer API
  1. Webhooks
Azeer API
  • Default module
    • API Authentication
    • APIs
      • Agents
        • Create Agent
        • Update Agent
        • Get Agent Details
      • Contacts
        • Create Contact
        • Create Bulk Contacts
      • Messages
        • Send Message
        • Delete Message
        • Delete Bulk Messages
      • Webhooks
        • Webhooks
        • List all webhooks
          GET
        • Get Webhook Details
          GET
        • Create Webhook
          POST
        • Delete Webhook
          DELETE
      • tags
        • Create Tag
  1. Webhooks

List all webhooks

GET
https://api.mottasl.ai/v1/webhook/all
Last modified:2024-11-25 16:32:15
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/all' \
--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 2024-11-25 16:32:15
Previous
Webhooks
Next
Get Webhook Details
Built with