forked from xendit/xendit-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRecurringExample.php
More file actions
47 lines (35 loc) · 1.05 KB
/
RecurringExample.php
File metadata and controls
47 lines (35 loc) · 1.05 KB
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
44
45
46
47
<?php
/**
* RecurringExample.php
* php version 7.2.0
*
* @category Example
* @package Xendit/Examples
* @author Ellen <ellen@xendit.co>
* @license https://opensource.org/licenses/MIT MIT License
* @link https://api.xendit.co
*/
use Xendit\Xendit;
require 'vendor/autoload.php';
Xendit::setApiKey('SECRET_API_KEY');
$params = [
'external_id' => 'demo_147580196270',
'payer_email' => 'sample_email@xendit.co',
'description' => 'Trip to Bali',
'amount' => 32000,
'interval' => 'MONTH',
'interval_count' => 1
];
$createRecurring = \Xendit\Recurring::create($params);
var_dump($createRecurring);
$id = $createRecurring['id'];
$getRecurring = \Xendit\Recurring::retrieve($id);
var_dump($getRecurring);
$editRecurring = \Xendit\Recurring::update($id, ['amount' => 10000]);
var_dump($editRecurring);
$pauseRecurring = \Xendit\Recurring::pause($id);
var_dump($pauseRecurring);
$resumeRecurring = \Xendit\Recurring::resume($id);
var_dump($resumeRecurring);
$stopRecurring = \Xendit\Recurring::stop($id);
var_dump($stopRecurring);