giftd/giftd-php-client

GIFTD API PHP client. Allows to check promo codes

1.1.5 2018-08-07 10:05 UTC

This package is not auto-updated.

Last update: 2025-05-19 10:08:03 UTC


README

This repository contains a PHP Client for the API of Giftd.tech project.

Check out the full API documentation.

Requirements

  • PHP version >= 5.3.3

  • php-cURL extension

Take a look at example.php to find usage examples.

Installation

composer require giftd/giftd-php-client

Basic usage example

<?php
$basketTotal = 900;
$promoCode = '1234-5678-9876-4321';

$giftdUserId = 1234;
$giftdApiKey = '7815696ecbf1c96e6894b779456d330e';

$apiClient = new Giftd\ApiClient($giftdUserId, $giftdApiKey);
$card = $apiClient->checkByToken($promoCode, $basketTotal);
if ($card) {
  if ($card->is_available) {
    echo "Available amount: {$card->amount_available}; minimum amount total: {$card->min_amount_total}";
    // You may redeem this promocode after user finishes the order (i.e. charge the card):
    // $apiClient->charge($promoCode, $card->amount_available)
  } else {
    echo "No amount available on the gift card";
  }
} else {
  echo "Wrong token passed, gift card not found!";
}
?>

Support

Please send your questions and suggestions to support@giftd.tech.