API Reference

1. Account Credit

This webhook event is fired when an inflow occurs successfully against an account via any deposit type entity i.e bank account or deposit address

{
  "data": {
    "account_id": "b064d47d6f5911ed8cc5dacad92d8272",
    "amount": 14000,
    "balance_after": 112900,
    "balance_before": 99000,
    "bank_account": {
      "account_name": "CLEMENT ISONG",
      "account_number": "9992740150015003",
      "balance": 112900,
      "bank_address": {
        "city": "Memphis",
        "country": "US",
        "line1": "6070 Poplar Ave",
        "line2": "Suite 200",
        "postal_code": "38119",
        "state": "TN"
      },
      "bank_code": null,
      "bank_name": "Evolve Bank and Trust",
      "block_expiry": null,
      "created_at": "2022-11-28T20:17:32Z",
      "credit_pending": 0,
      "currency": "USD",
      "debit_pending": 0,
      "holder_id": "4b0efc276f5711ed8cc5dacad92d8272",
      "holder_type": "person",
      "id": "b064d47d6f5911ed8cc5dacad92d8272",
      "label": "Grocery Account 3",
      "routing_number": "084106768",
      "status": "active",
      "type": "personal_checking",
      "updated_at": "2023-01-10T16:06:06Z"
    },
    "created_at": "2023-01-10T16:06:06Z",
    "currency": "USD",
    "deposit": {
      "account_id": "b064d47d6f5911ed8cc5dacad92d8272",
      "amount": 14000,
      "amount_settled": 13900,
      "created_at": "2023-01-10T16:06:05Z",
      "currency": "USD",
      "fee": 100,
      "id": "b02647b8910011ed97c982e65b002663",
      "payer": {
        "account_number": null,
        "bank_name": "Wells Fargo Bank National Association",
        "name": "CHARLES ELBA",
        "routing_number": "121042882",
        "routing_type": "aba",
        "trace_number": "7600"
      },
      "status": "successful",
      "type": "fiat",
      "updated_at": "2023-01-10T16:06:05Z"
    },
    "deposit_id": "b02647b8910011ed97c982e65b002663",
    "description": "Salary Disbursement - Jan 2026",
    "id": "b032f444910011ed97c982e65b002663",
    "kind": "deposit",
    "linked_transaction_id": null,
    "payout_id": null,
    "status": "successful",
    "type": "credit",
    "updated_at": "2023-01-10T16:06:06Z"
  },
  "entity": "transaction",
  "event_type": "account.credit"
}

2. Payout Success

This webhook event is fired when a payout is processed successfully.

{
  {
  "data": {
    "account_id": "487234c1b08011ed97c982e65b002663",
    "account_type": "wallet_account",
    "amount": 1000,
    "balance_after": 8393,
    "balance_before": 10393,
    "card_id": null,
    "charge_id": null,
    "conversion_id": null,
    "created_at": "2024-07-09T14:21:51Z",
    "currency": "USD",
    "custom_reference": null,
    "deposit_id": null,
    "description": "Payout - TEST PAYOUT",
    "id": "95e735963dfe11efb8d20edcd86e5ab3",
    "kind": "payout",
    "linked_transaction_id": null,
    "object_type": "account",
    "organisation_id": "8dbe79d36c1011ed8cc5dacad92d8272",
    "payout_id": "95e5e6283dfe11efb8d20edcd86e5ab3",
    "status": "successful",
    "type": "debit",
    "updated_at": "2024-07-09T14:21:54Z"
  },
  "entity": "transaction",
  "event_type": "payout.success"
}

3. Card Transaction

This webhook event is fired when a transaction occurs against an issued card on your transaction. Transactions can either be debits for charges or credits for possible refunds.

{
  "data": {
    "id": "01270a2fb07011ed9e800242ac110002",
    "object_type": "card",
    "card_id": "011b7b78b07011ed9e800242ac110002",
    "account_id": null,
    "account_type": null,
    "kind": "charge",
    "deposit_id": null,
    "payout_id": null,
    "charge_id": "0124be79b07011ed9e800242ac110002",
    "linked_transaction_id": null,
    "type": "debit",
    "description": "Sainsbury's Shopping",
    "currency": "USD",
    "amount": 1299,
    "balance_before": 8262,
    "balance_after": 6963,
    "status": "successful",
    "created_at": "2023-02-19 16:11:02",
    "updated_at": "2023-02-19 16:11:02",
    "card": {
      "id": "aba9d6e7b03f11ed9e800242ac110002",
      "holder_id": "c74b2fb8a59911eda9df0242ac110002",
      "holder_type": "person",
      "balance": 5000,
      "currency": "USD",
      "brand": "visa",
      "label": "Sandbox",
      "cardholder_name": "JOHN DERRICK",
      "number_masked": "4291**********45",
      "number": "8a94891bee7cc295694722235a8b3c6f",
      "exp_month": "02",
      "exp_year": "2026",
      "cvv": "d3339283dd27145e8f822e3ef4882074",
      "pin": null,
      "billing_address": {
        "address_type": "mailing",
        "city": "Missouri",
        "country": "US",
        "line1": "2632 Bouillon Way",
        "line2": "",
        "postal_code": "012916",
        "state": "BA"
      },
      "status": "active",
      "created_at": "2023-02-19T10:25:02Z",
      "updated_at": "2023-02-19T10:25:02Z"
    }
  },
  "entity": "transaction",
  "event_type": "card.transaction"
}