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

Get Webhook Details

GET
https://api.mottasl.ai/v1/webhook/{id}
Last modified:2025-12-10 13:00:04
Get Webhook details by ID

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path 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 --request GET 'https://api.mottasl.ai/v1/webhook/123' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "data": {
        "response": {
            "contact": {
                "id": 1,
                "is_agent": true,
                "display_name": "Admin"
            },
            "id": 517,
            "name": "BOT | chat_assigned",
            "description": "Chatbot integration Webhook for chat_assigned event",
            "url": "https://test.example.com",
            "event": "chat_assigned",
            "securetoken": "Aa123456",
            "policy": "simple",
            "enabled": true,
            "created_at": "2024-11-14T11:48:24.043653Z",
            "updated_at": "2024-11-14T11:48:24.043653Z"
        }
    },
    "message": "webhooks for business id: xyz and id: 517 queried successfully",
    "success": true
}
🔴500InternelError
🟠400BadRequest
Modified at 2025-12-10 13:00:04
Previous
List All Webhooks
Next
Create Webhook
Built with