-
Notifications
You must be signed in to change notification settings - Fork 25
/
sample.go
119 lines (101 loc) · 2.54 KB
/
sample.go
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package main
import (
"fmt"
"github.com/midtrans/midtrans-go"
"github.com/midtrans/midtrans-go/coreapi"
"github.com/midtrans/midtrans-go/example"
)
var c coreapi.Client
func initiateCoreApiClient() {
c.New(example.SandboxServerKey1, midtrans.Sandbox)
}
func CheckTransaction() {
res, err := c.CheckTransaction("YOUR-ORDER-ID_or_TRANSACTION-ID")
if err != nil {
// do something on error handle
}
fmt.Println("Response: ", res)
}
func CheckStatusB2B() {
res, err := c.GetStatusB2B("YOUR-ORDER-ID_or_TRANSACTION-ID")
if err != nil {
// do something on error handle
}
fmt.Println("Response: ", res)
}
func ApproveTransaction() {
res, err := c.ApproveTransaction("YOUR-ORDER-ID_or_TRANSACTION-ID")
if err != nil {
// do something on error handle
}
fmt.Println("Response: ", res)
}
func DenyTransaction() {
res, err := c.DenyTransaction("YOUR-ORDER-ID_or_TRANSACTION-ID")
if err != nil {
// do something on error handle
}
fmt.Println("Response: ", res)
}
func CancelTransaction() {
res, err := c.CancelTransaction("YOUR-ORDER-ID_or_TRANSACTION-ID")
if err != nil {
// do something on error handle
}
fmt.Println("Response: ", res)
}
func ExpireTransaction() {
res, err := c.ExpireTransaction("YOUR-ORDER-ID_or_TRANSACTION-ID")
if err != nil {
// do something on error handle
}
fmt.Println("Response: ", res)
}
func CaptureTransaction() {
refundRequest := &coreapi.CaptureReq{
TransactionID: "TRANSACTION-ID",
GrossAmt: 10000,
}
res, err := c.CaptureTransaction(refundRequest)
if err != nil {
// do something on error handle
}
fmt.Println("Response: ", res)
}
func RefundTransaction() {
refundRequest := &coreapi.RefundReq{
Amount: 5000,
Reason: "Item out of stock",
}
res, err := c.RefundTransaction("YOUR_ORDER_ID_or_TRANSACTION_ID", refundRequest)
if err != nil {
// do something on error handle
}
fmt.Println("Response: ", res)
}
func DirectRefundTransaction() {
refundRequest := &coreapi.RefundReq{
RefundKey: "order1-ref1",
Amount: 5000,
Reason: "Item out of stock",
}
// Optional: set payment idempotency key to prevent duplicate request
c.Options.SetPaymentIdempotencyKey("UNIQUE-ID")
res, err := c.DirectRefundTransaction("YOUR_ORDER_ID_or_TRANSACTION-ID", refundRequest)
if err != nil {
// do something on error handle
}
fmt.Println("Response: ", res)
}
func main() {
initiateCoreApiClient()
CheckTransaction()
CheckStatusB2B()
ApproveTransaction()
DenyTransaction()
CancelTransaction()
ExpireTransaction()
CaptureTransaction()
RefundTransaction()
DirectRefundTransaction()
}