Skip to main content
GET
/
webhooks
List webhook endpoints
curl --request GET \
  --url https://whatsrb.com/api/v1/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "url": "<string>",
      "events": [
        "<string>"
      ],
      "active": true,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

API key from the WhatsRB dashboard. Format: Bearer wrb_live_xxx

Response

OK

data
object[]
meta
object