-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCreateCard.php
43 lines (35 loc) · 1.18 KB
/
CreateCard.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
include_once 'vendor/autoload.php';
use GlobalPayments\Api\Entities\Enums\CardType;
use Omnipay\Omnipay;
$gateway = Omnipay::create('GlobalPayments\Heartland');
$gateway->setSecretApiKey('skapi_cert_McU0AgBkx2EAldEfhhtolMw0RnvahBQAnXFdLYga-Q');
/**
* 'Card reference' in the context of Omnipay/Global-Payments integrations is
* synonymous with Multi-Use Tokens. For Heartland, a MUT can
* represent the card number and exipration date.
*/
$formData = array(
'number' => '5454545454545454',
'expiryMonth' => '12',
'expiryYear' => '2025',
'cvv' => '123',
'type' => CardType::MASTERCARD, // required for Transit gateway only
'firstName' => 'Tony',
'lastName' => 'Smedal',
'billingAddress1' => '1 Heartland Way',
'billingCity' => 'Jeffersonville',
'billingState' => 'IN',
'billingCountry' => 'USA',
'billingPostCode' => '47130'
);
$response = $gateway->createCard(
array(
'card' => $formData,
)
)->send();
if ($response->isSuccessful()) {
echo 'Success! Card-reference successfully generated. Card reference is: ' . $response->getCardReference();
} else {
echo 'Failure! Something went wrong: ' . $response->getMessage();
}