-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
55 lines (48 loc) · 1.06 KB
/
.env.example
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
48
49
50
51
52
53
54
55
AWS_REGION_NAME
DATABASE_URL
JWT_KEY_ID
JWT_SIGNATURE_ALGORITHM
############### Flutterwave Test Sandbox Values ################
FLUTTERWAVE_PUBLIC_KEY=
FLUTTERWAVE_SECRET_KEY=
FLUTTERWAVE_ENCRYPTION_KEY=
WAVE_BASE_URL=https://api.flutterwave.com/v3
CARD_NUMBER=
CVV=
EXPIRY_MONTH=
EXPIRY_YEAR=
PIN=
If user already has card saved, use this to charge such;
{
"email": "",
"amount": int,
"fullname": "",
"pin": int
}
else
{
"email": "",
"amount": int,
"fullname": "",
"pin": int,
"card_number": "",
"cvv": "",
"expiry_month": "",
"expiry_year": ""
}
Use this below for payment transfer initialization - \
ofcourse this is testing data but flutterwave is no more
allowing transfer from developer account. However every other works in the system
{
"account_bank": "",
"account_number": "",
"amount": "",
"narration": "Payment for things",
"currency": "NGN",
"rider_email": ""
}
To credit and debit user balance internally, use this
{
"email": "",
"amount": ""
}