GET
/
v1
/
settings
/
developer
/
webhooks
Get public webhook settings
curl --request GET \
  --url https://api.wazapin.com/v1/settings/developer/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "app_id": "<string>",
    "endpoints": [
      {
        "enabled": true,
        "event_types": [
          "<string>"
        ],
        "id": "<string>",
        "url": "<string>",
        "created_at": "<string>",
        "description": "<string>",
        "masked_signing_secret": "<string>",
        "updated_at": "<string>"
      }
    ],
    "supported_events": [
      {
        "description": "<string>",
        "key": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Session token or API key

Response

OK

data
object
required