Skip to main content
GET
/
api
/
v1
/
webhooks
List webhooks
curl --request GET \
  --url https://www.itsconvo.com/api/v1/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "wh_abc123",
      "url": "https://hooks.example.com/convo",
      "events": [
        "conversation.created"
      ],
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key as Bearer token. Generate keys in your Convo dashboard settings.

Response

Active webhooks

data
object[]