Request loginWelcome.txt

Rayvandy Gabbytian , November 20, 2014 16:36

Download (605 Bytes)

 
1
function loginWelcome(){
2
	path = "bii_RestfulRib/service/IBLoginServices/loginWelcome";
3
		
4
		var input = {
5
		    method : 'post',
6
		    returnedContentType : 'json',
7
		    path : path,
8
		    body:{
9
	            contentType:'application/json; charset=UTF-8',
10
	            content:
11
	                JSON.stringify({
12
	                	"userAlias": "ribuser1",
13
	                    "locale": "en",
14
	                    "userAgent": "mobile",
15
	                    "remoteIPAddress": "",
16
	                    "sessionId": "",
17
	                })
18
	            }
19
		};
20
		
21
		
22
	return WL.Server.invokeHttp(input);
23
}