Request getSavingCurrentAccountSummary.txt

Rayvandy Gabbytian , November 21, 2014 16:18

Download (587 Bytes)

 
1
function getSavingCurrentAccountSummary(userId,cifNo,sessionId) {
2
    path = "bii_RestfulRib/service/enquiryServices/getSavingCurrentAccountSummary";
3
    var input = {
4
        method: 'post',
5
        returnedContentType: 'json',
6
        path: path,
7
        body: {
8
            contentType: 'application/json; charset=UTF-8',
9
            content: JSON.stringify({
10
            	"userId":"1391",
11
                "locale":"en",
12
                "cifNo":"0002768476",
13
                "sessionId":"20141017203045013593"
14

    
15
            })
16
        }
17
    };
18
    return WL.Server.invokeHttp(input);
19
}