Request getCreditCardAccountSummary.txt

Rayvandy Gabbytian , November 21, 2014 16:55

Download (536 Bytes)

 
1
function getCreditCardAccountSummary() {
2
    path = "bii_RestfulRib/service/enquiryServices/getCreditCardAccountSummary";
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":userId,
11
            	"locale":"en",
12
                "cifNo":cifNo,
13
                "sessionId":sessionId
14

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