Retrieve Webhooks

To gets all webhooks, make a GET call to the /webhooks .

Example

Sample request:

curl -X GET 'https://waofficial.botika.online/api/whatsapp/v1/webhooks' \
-H 'Authorization: Bearer {{ API_TOKEN }}'

Reading from this edge will return a JSON formatted result:

{
    "data": [
        {
            "id": {{ WEBHOOK_ID }},
            "name": "{{ WEBHOOK_NAME }}",
            "url": "{{ WEBHOOK_URL }}",
            "status": "{{ WEBHOOK_STATUS }}",
            "events": [
                "outbound notifications",
                "inbound notifications"
            ]
        },
        ...
    ],
    "links": {
        "first": "https://waofficial.botika.online/api/whatsapp/v1/webhooks?page=1",
        "last": null,
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "https://waofficial.botika.online/api/whatsapp/v1/webhooks",
        "per_page": 10,
        "to": 1
    }
}

Copyright © 2023 Botika Teknologi Indonesia