phpdev/hsbc

There is no license information available for the latest version (1.0.0) of this package.

HSBC Web Ekstre Banka Entegrasyon Hesap Hareketleri

1.0.0 2025-02-10 11:03 UTC

This package is auto-updated.

Last update: 2025-04-10 11:29:08 UTC


README

require_once 'HSBCService.php';

use Phpdev\HSBCService;

$associationCode = "your_association_code"; $username = "your_username"; $password = "your_password";

$hsbcService = new HSBCService($associationCode, $username, $password);

$startDate = "2025-02-05"; $endDate = "2025-02-10";

$response = $hsbcService->getAccountReport($startDate, $endDate);

if ($response['status']) { echo "Hesap Raporu:\n"; print_r($response['response']); } else { echo "Hata: " . $response['response']; }