phpdev/emlakkatilim

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

Emlak Katilim Web Ekstre Banka Entegrasyon Hesap Hareketleri

1.0.5 2024-08-25 14:03 UTC

This package is auto-updated.

Last update: 2024-08-25 14:07:56 UTC


README

use Phpdev\EmlakKatilim;

$username = "";
$password = "";
$wsdlUrl = "https://boa.emlakbank.com.tr/BOA.Integration.WCFService/BOA.Integration.AccountStatement/AccountStatementService.svc/Basic";

$emlakKatilim = new EmlakKatilim($username, $password, $wsdlUrl);

$beginDate = "2024-08-05";
$endDate = "2024-08-22";

$response = $emlakKatilim->getAccountStatement($beginDate, $endDate);

$responseArray = json_decode($response, true);

if ($responseArray['statu']) {
    print_r($responseArray['response']);
} else {
    echo "Hata: " . $responseArray['response'];
}