Request authenticateUserSession.txt

Rayvandy Gabbytian , November 20, 2014 17:52

Download (406 Bytes)

 
1
function authenticateUserSession(){
2
	path = "bii_RestfulRib/service/IBCommonServices/authenticateUserSession";
3
		
4
	var input = {
5
			method: 'post',
6
			returnedContentType: 'json',
7
			path: path,
8
			body: {
9
				contentType: 'application/json; charset=UTF-8',
10
				content: JSON.stringify({
11
					"userId": "1391",
12
					"sessionId": "123123123123123",
13
				})
14
			}
15
		};
16
		
17
	return WL.Server.invokeHttp(input);
18
}