Capvant

List your registered webhook endpoints

get
https://sandbox.capvant.com/v1/webhooks
GET
/webhooks

Authorization

ApiKeyAuth
X-API-Key<token>

Lender keys start with cv_live_; Partner keys start with cv_pk_. Shown once at creation, sent on every request.

In: header

Response Body

application/json

application/json

application/json

application/json

Shell
curl -X GET "https://sandbox.capvant.com/webhooks"
JSON
{  "webhooks": [    {      "id": "string",      "url": "http://example.com",      "events": [        "deal.created"      ],      "active": true,      "created_at": "2019-08-24T14:15:22Z",      "last_success_at": "2019-08-24T14:15:22Z",      "last_failure_at": "2019-08-24T14:15:22Z",      "failure_count": 0,      "payload": "full",      "environment": "live"    }  ]}