aboutsummaryrefslogtreecommitdiff
path: root/testdata
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2022-11-07 11:55:20 +0700
committerShulhan <ms@kilabit.info>2022-11-07 11:59:50 +0700
commiteb3c3fc6b20b77c26a571395f584efdce8cfb4f7 (patch)
tree0eb6fc3a9435a93f8bf6a33fa9c8cf4b7ed93b02 /testdata
parentab25f641e3343151839cf2624d19ef235a070c9d (diff)
downloadduitku-eb3c3fc6b20b77c26a571395f584efdce8cfb4f7.tar.xz
all: implement client API for Clearing Inquiry
The ClearingInquiry method is used to initiate the transfer for Clearing using LLG, RTGS, H2H, or BI-FAST.
Diffstat (limited to 'testdata')
-rw-r--r--testdata/disbursement/clearing_inquiry_test.txt28
1 files changed, 28 insertions, 0 deletions
diff --git a/testdata/disbursement/clearing_inquiry_test.txt b/testdata/disbursement/clearing_inquiry_test.txt
new file mode 100644
index 0000000..63581e7
--- /dev/null
+++ b/testdata/disbursement/clearing_inquiry_test.txt
@@ -0,0 +1,28 @@
+>>> request.json
+{
+ "userId": 3551,
+ "email": "test@chakratechnology.com",
+ "amountTransfer": 10000,
+ "bankCode": "014",
+ "bankAccount": "8760673466",
+ "purpose": "Test Clearing Inquiry with duitku.",
+ "timestamp": 1506486841000,
+ "custRefNumber": "12345789",
+ "senderId": 123456789,
+ "senderName": "John Doe",
+ "type": "LLG"
+}
+
+<<< response.json
+{
+ "email": "test@chakratechnology.com",
+ "bankCode": "014",
+ "bankAccount": "8760673466",
+ "amountTransfer": 10000,
+ "accountName": "Test Account",
+ "custRefNumber": "12345789",
+ "disburseId": 121012,
+ "type": "LLG",
+ "responseCode": "00",
+ "responseDesc": "Approved or completed successfully"
+}