Вы находитесь на странице: 1из 9

AUTO TOP-UP IMPLEMENTATION

UNIKAS

Prepared By:
M. Nagas Johansyah

Rizky Kartika Putri

PT MULTIPOLAR TECHNOLOGY
02/05/2018

Version
1.3
PT. Multipolar TechnologyTbk © Confidential

COPYRIGHT NOTICE
PT. Multipolar TechnologyTbk © Confidential

Copyright 2017 by PT. Multipolar Technology Tbk

All rights reserved. This material is confidential and proprietary to PT. Multipolar Technology Tbk and no part of
this material should be reproduced, published in any form by any means, electronic or mechanical including
photocopy or any information storage or retrieval system nor should the material be disclosed to third parties
without the express written authorization of PT. Multipolar Technology Tbk.
REVISION HISTORY
Version
No Revision Date Author Description
Document
17 April 2018 Initial Document
1. Nagas 1.0
18 April 2018 Fixed values
2 Nagas 1.1
02 Mei 2018 Revised some values
3 Rizky 1.2
08 Mei 2018 At new services
4 Rizky 1.3
PT. Multipolar TechnologyTbk © Confidential

Overview
Pengiriman message menggunakan SOAP Web Service (GeneralWSIml.wsdll).

Data dikirimkan dalam parameter “data” dengan format JSON dan dikembalikan dalam String
dengan format JSON pula.

REQUEST
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.ebanking.mpc.com">
<soapenv:Header/>
<soapenv:Body>
<ws:atRegister>

<ws:data>{"customerId":"085640449904","accountNo":"1234567890","mpin":"123456","tpin":"11
1111","amountThreshold":1000000,"startDate":"20180417","endDate":"20180417","userId":"APRI
L0001","traceNo":"UNI1234567890","phoneNumber":"085640449904","date":"180417063240"}<
/ws:data>
</ws:atRegister>
</soapenv:Body>
</soapenv:Envelope>
RESPONSE
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<atRegisterResponse xmlns="http://ws.ebanking.mpc.com">

<atRegisterReturn>{"referenceNo":"132332131211","rc":"00","userId":"APRIL0001","description":
"SUCCESS","traceNo":"UNI1234567890"}</atRegisterReturn>
</atRegisterResponse>
</soapenv:Body>
</soapenv:Envelope>

1
PT. Multipolar TechnologyTbk © Confidential

1. Auto Top-up Registration


Parameter Value
URL atRegister
Sample Param {
“userId”: “UKS001”,
“traceNo”: “000665”,
“phoneNumber”: “086526436773”,
“date”: ”180417063240”,
“customerId”: “086526436773”,
“customerName”:”Siti Maryam”,
“accountNo”: “7881738910”,
“mpin”: “12345”,
“tpin”: “11111”,
“amountThreshold”: 1000000,
“startDate”: “180417”,
“endDate”: “180417”
}
Sample Result {
“rc”: ”00”,
“userId”: “UKS001”,
“description”: “SUCCESS”,
“traceNo”: “000665”,
“referenceNo”: “3”
}

2. Request Token
Parameter Value
URL atRequestToken
Sample Param {
“userId”: “UKS001”,
“traceNo”: “000665”,
“phoneNumber”: “086526436773”,
“date”: ”180417063240”
}
Sample Result {
“rc”: ”00”,
“userId”: “UKS001”,
“description”: “SUCCESS”,
“traceNo”: “000665”,
“referenceId”: “IB273676”
}

2
PT. Multipolar TechnologyTbk © Confidential

3. Inquiry Registration Status


Parameter Value
URL atRegistererStatusInq
Sample Param {
“userId”: “UKS001”,
“traceNo”: “000665”,
“phoneNumber”: “086526436773”,
“date”: ”180417063240”
}
Sample Result {
“rc”: ”00”,
“userId”: “UKS001”,
“description”: “SUCCESS”,
“traceNo”: “000665”,
“listAccount”: {
“accountNo”: “7881738910”,
“name”: “John Sitahan”
}
}

4. Auto Top-up Unregistration


Parameter Value
URL atUnregister
Sample Param {
“userId”: “UKS001”,
“traceNo”: “000665”,
“phoneNumber”: “086526436773”,
“referenceNo”:”3”,
“date”: ”180417063240”
}
Sample Result {
“rc”: ”00”,
“userId”: “UKS001”,
“description”: “SUCCESS”,
“traceNo”: “000663”
}

3
PT. Multipolar TechnologyTbk © Confidential

5. Force Top-up
Parameter Value
URL atForceTopUp
Sample Param {
“userId”: “UKS001”,
“traceNo”: “000665”,
“phoneNumber”: “086526436773”,
“date”: ”180417063240”,
“currentBalance”: 0,
“referenceNo”: “3”
}
Sample Result {
“rc”: ”00”,
“userId”: “UKS001”,
“description”: “SUCCESS”,
“traceNo”: “000665”,
“referenceNo”: “086526436773”
}

6. Inquiry Registered Auto Top-up


Parameter Value
URL atRegisteredUserInq
Sample Param {
“userId”: “UKS001”,
“traceNo”: “000665”,
“phoneNumber”: “086526436773”,
“date”: ”180417063240”
}
Sample Result {
“rc”: ”00”,
“userId”: “UKS001”,
“description”: “SUCCESS”,
“traceNo”: “086526436773”
“list”: {
“referenceNo”: “12323231111”,
“customerId”: “086526436773”,
“amountThreshold”: 1000000,
“startDate”: “180417”,
“endDate”: “180417”
}
}

7. Inquiry Registered Other

4
PT. Multipolar TechnologyTbk © Confidential

Parameter Value
URL atRegisterOther
Sample Param {
“userId”: “UKS001”,
“traceNo”: “000665”,
“phoneNumber”: “086526436773”,
“date”: ”180417063240”,
“customerId”: “081781903454”,
“customerName”:”Siti Maryam”,
“accountNo”: “7881738910”,
“mpin”: “12345”,
“tpin”: “11111”,
“amountThreshold”: 1000000,
“startDate”: “180417”,
“endDate”: “180417”
}
Sample Result {
“rc”: ”00”,
“userId”: “UKS001”,
“description”: “SUCCESS”,
“traceNo”: “000665”,
“referenceNo”: “4”
}

Вам также может понравиться