InvestiFiPartner APIBeta
Prod Environment

List Webhook Subscriptions

Returns the financial institution's active webhook subscriptions. Disabled (unsubscribed) subscriptions are hidden, so a subscription a partner has deleted does not reappear in the list.

Parameters
api_key
Resolved Partner API key, providing the financial institution scope for the lookup.
Returns

The financial institution's enabled subscriptions.

https://partner-api.investifi.com/v1
GET
/webhooks/subscriptions

Authorization

APIKeyHeader
x-api-key<token>

In: header

Response Body

application/json

curl -X GET "https://partner-api.investifi.com/v1/webhooks/subscriptions"
{
  "subscriptions": [
    {
      "subscription_id": "string",
      "event_type": "kyc",
      "url": "string",
      "enabled": true,
      "created_at": "2019-08-24T14:15:22Z"
    }
  ]
}