diff --git a/src/Message/AuthorizeRequest.php b/src/Message/AuthorizeRequest.php index 76ed1df..95f816e 100755 --- a/src/Message/AuthorizeRequest.php +++ b/src/Message/AuthorizeRequest.php @@ -26,6 +26,7 @@ public function getData() 'postal' => $card->getBillingPostcode(), 'email' => $card->getEmail(), 'phone' => $card->getBillingPhone(), + 'bin' => 'Y', 'tokenize' => 'Y', 'ecomind' => 'E' ]; diff --git a/src/Message/PurchaseRequest.php b/src/Message/PurchaseRequest.php index aeb8b49..3658017 100755 --- a/src/Message/PurchaseRequest.php +++ b/src/Message/PurchaseRequest.php @@ -27,8 +27,9 @@ public function getData() 'email' => $card->getEmail(), 'phone' => $card->getBillingPhone(), 'retref' => $this->getTransactionReference(), + 'bin' => 'Y', 'tokenize' => 'Y', - 'ecomind' => 'E', + 'ecomind' => 'E', 'capture' => 'Y' ]; return $data;