https://github.com/trijayadigital/cekmutasi-codeigniter
Dvelopment & Integration Toolkit for CodeIgniter Framework
https://github.com/trijayadigital/cekmutasi-codeigniter
cekmutasi cekmutasi-library codeigniter-framework mutasi-bank php
Last synced: 9 months ago
JSON representation
Dvelopment & Integration Toolkit for CodeIgniter Framework
- Host: GitHub
- URL: https://github.com/trijayadigital/cekmutasi-codeigniter
- Owner: trijayadigital
- Created: 2019-11-29T17:15:01.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-10T02:40:58.000Z (over 4 years ago)
- Last Synced: 2023-11-16T09:35:58.740Z (about 2 years ago)
- Topics: cekmutasi, cekmutasi-library, codeigniter-framework, mutasi-bank, php
- Language: PHP
- Homepage: https://cekmutasi.co.id/developer
- Size: 20.5 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cekmutasi X CodeIgniter Framework
Development & Integration Toolkit for CodeIgniter Framework (2.x+). For other web framework/language/plugin, please go to https://github.com/trijayadigital/cekmutasi
## Requirements
- PHP 5.4+
- CodeIgniter Framework v2.0+
- cURL extension enabled
## Installation
- Copy folder **Cekmutasi** to your **application/libraries**
- Copy **cekmutasi.php** to your **application/config**
- Add your API Key & Signature in **application/config/cekmutasi.php**
## How To Use?
Here is the example:
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Cekmutasi extends CI_Controller
{
public function balance()
{
$this->load->library('cekmutasi/cekmutasi');
$balance = $this->cekmutasi->balance();
print_r($balance);
}
}
?>
Object data will return as data type of result
For further example, you can check out in TestCekmutasi.php included on this package
## Available Methods
* ### balance()
Get cekmutasi account balance
* ### checkIP()
Check your detected IP address. This IP should be added to Whitelist IP in your integration if you want to use HTTP Request method or some plugins
* ### catchIPN()
Handle callback/ipn data. This method is highly recommended for use because it has pre-build callback/ipn security verification
* ### bank()
Load Bank service. Below are the available methods from bank service
- #### list()
Get bank account list
- #### detail()
Get bank account detail
- #### balance()
Get total balance of registered bank accounts
- #### mutation()
Get bank mutation (max 1000)
* ### paypal()
Load PayPal service. Below are the available methods from paypal service
- #### list()
Get paypal account list
- #### detail()
Get paypal account detail
- #### balance()
Get total balance of registered paypal accounts
- #### mutation()
Get paypal mutation (max 1000)
* ### gopay()
Load GoPay service. Below are the available methods from gopay service
- #### list()
Get gopay account list
- #### detail()
Get gopay account detail
- #### balance()
Get total balance of registered gopay accounts
- #### mutation()
Get gopay mutation (max 1000)
* ### ovo()
Load OVO service. Below are the available methods from ovo service
- #### list()
Get ovo account list
- #### detail()
Get ovo account detail
- #### balance()
Get total balance of registered ovo accounts
- #### mutation()
Get ovo mutation (max 1000)
- #### transferBankList()
Get the available destination banks
- #### transferBankInquiry()
Make transfer bank inquiry
- #### transferBank()
Proccess transfer from OVO to bank
- #### transferBankDetail()
Get transaction detail of bank transfer
- #### transferOVOInquiry()
Make transfer OVO inquiry
- #### transferOVO()
Proccess transfer from OVO to OVO
## Security Advice
For the best way to handle Callback/IPN, we strongly recommend you to use the catchIPN() method with pre-build security validation to handle and verifiying incoming callback/ipn data.