2017 © Pedro Peláez
 

library php-akbank-api

image

hkulekci/php-akbank-api

  • Monday, May 9, 2016
  • by hkulekci
  • Repository
  • 3 Watchers
  • 14 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

PHP Client For Akbank API

You can easily connect to Akbank API Client with PHP. Example:, (*1)

<?php
require_once '../vendor/autoload.php';

define('API_KEY', '....');

$apiClient = new \AkbankAPI\Client('https://apigate.akbank.com/api/mock/');
$apiClient->setApikey(API_KEY);

// TEST 1
$response = $apiClient->getCreditInterestRate(
     \AkbankAPI\Endpoints\CreditInterestRates::CREDIT_TYPE_CONSUMER_LOAN
);
var_dump($response->isOk());
var_dump($response->getReturnCode());
var_dump($response->getReturnMessage());
var_dump($response->getData());

For more example you can check the tests., (*2)

API Documentation : https://apiportal.akbank.com/documentation Client Documentation : Soon!, (*3)

The Versions

09/05 2016

dev-master

9999999-dev

  Sources   Download

The Requires

 

27/04 2016

dev-travis-update

dev-travis-update

  Sources   Download

The Requires