Request loginAccess.txt

Rayvandy Gabbytian , November 20, 2014 16:27

Download (415 Bytes)

 
1
function loginAccess() {
2
	path = "bii_RestfulRib/service/IBLoginServices/loginAccess";
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
                	"locale":"en"
13
                })
14
            }
15
	};
16
	
17
	
18
	return WL.Server.invokeHttp(input);
19
}