Skip to main content
GET
/
v1
/
webhooks
/
endpoints
List webhook endpoints
curl --request GET \
  --url https://api.whatsapp-use.com/v1/webhooks/endpoints \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "user_id": "<string>",
      "url": "<string>",
      "description": "<string>",
      "event_types": [
        "<string>"
      ],
      "secret": "<string>",
      "enabled": true,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Webhook endpoints.

items
object[]