Event Types

Explanation and examples for the types of webhooks sent by us

Connection Status Change

When a connection status changes this webhook will be fired.

{
  "expiryDate": "2023-08-23",
  "bankName": "leumi" ,
  "connectionId": "1234",
  "connectionStatus": "ACTIVE",
  "userId": "1234",
  "orgId": "1234",
  "connectionError": "Some Error",
  "accountNumbers": ["IL620108000000099999999". "IL620108000000099999992"] ,
}

Using this webhook you can know when the connection has changed his status and act accordingly in your app.

For example: Once getting connectionStatus: "COMPLETED" | "ACTIVE" (see connection statuses) you can use the Get accounts by user api to fetch user accounts data.

Payment Status Change

When a connection status changes this webhook will be fired.

{
	"bankName": "leumi",
  "paymentId": "1234",
  "paymentStatus": "ACTC",
  "userId": "1234",
  "orgId": "1234",
  "paymentError": "Some Error", ,
}

Using this webhook you can know when the payment has changed his status and act accordingly in your app.

For example: Once getting paymentStatus: "ACTC" | "ACWC" (see Payments)