April 2024

We work hard to ensure everyone who uses ZWITCH gets the best experience. Every day we take small steps towards developing new products, enhancing existing features, and improving the performance of our system. We also fix (the occasional) bug in the system.

Below is a list of new feature releases, product improvements, and bug fixes we made in April 2024.

📘

Note

  • Except for breaking changes, all other changes are backward compatible.
  • Currently, we work on a daily release cycle. We push changes to the production environment as they are developed. However, we will notify you about breaking changes, new feature releases, and major enhancements via email before they are released.

🎉 Enhancements

Below are the enhancements we made in April 2024.

Virtual Account Transfer and Collection Wallets

We have added a new status full_kyc_pending to the virtual account wallet creation flow. All virtual accounts used as wallets created using ZWITCH undergo this status.

Once this status is acquired, you must submit the KYC details of your applicant to the ZWITCH KYC Team. After successful KYC verification, the virtual account status gets updated to active.

Webhooks

Below is the change we made to webhooks in April 2024.

Bulk Transfer Created Webhook Event

We have added the webhook events below to ZWITCH to provide updates regarding bulk transfer transactions.

  • transfers.bulk.created: Triggered when the Create Bulk Transfer API call is successfully made.

Below is a sample payload for the webhook events.

{
  "id": "evl_g7KbMEu4CwDqlIXzUt5RlNpwz",
  "object": "event",
  "name": "transfers.bulk.created",
  "is_sandbox": true,
  "data": {
    "object": {
      "id": "butr_YRCOUeiOBCGF9O67cR6wZOUit",
      "object": "bulk_transfer",
      "type": "account_number",
      "status": "queued",
      "debit_account_details": {
        "name": "Anil Reddy",
        "account_number": "95151838818710",
        "ifsc": "UTIB0CCH274"
      },
      "total_individual_transfers": 2,
      "total_transfer_amount": 3,
      "bulk_reference_id": "234.713.1106 x517",
      "updated_at": 1713351741,
      "is_sandbox": true,
      "created_at": 1713351741
    }
  }
}

Bulk Transfer Updated Webhook Event

We have added the webhook event below to ZWITCH to provide updates regarding bulk transfer transactions.

  • transfers.bulk.updated: Triggered when the create bulk transfer undergoes a status change.

Below is a sample payload for the webhook events.

{
  "id": "evl_g7KbMEu4CwDqlIXzUt5RlNpwz",
  "object": "event",
  "name": "transfers.bulk.updated",
  "is_sandbox": true,
  "data": {
    "object": {
      "id": "butr_YRCOUeiOBCGF9O67cR6wZOUit",
      "object": "bulk_transfer",
      "type": "account_number",
      "status": "completed",
      "debit_account_details": {
        "name": "Anil Reddy",
        "account_number": "95151838818710",
        "ifsc": "UTIB0CCH274"
      },
      "total_individual_transfers": 2,
      "total_transfer_amount": 3,
      "bulk_reference_id": "234.713.1106 x517",
      "updated_at": 1713351741,
      "is_sandbox": true,
      "created_at": 1713351741
    }
  }
}