Redwood Mobile GET Next RW mobile API
We are using the following POST API to perform RF screen rendering for Redwood Mobile:
Endpoint:POST https://xxxx/xxxxx/wms/lgfapi/v10/htmlrf/get_next_rwmobile_page
We receive the following response:
{ "htmlrfid": "gAAAAABpEEH8zI0_M7e_eTKJxdrdaqXUeQijp8psLp8nvzgon26lJ01kh6yckLp61ygbrRNvWkYgYnDlpxX5tMY1SJlrjWNbHQ==", "type": "dialog", "content": { "dialog_type": "yesno", "required": true, "allow_cancel": true, "focus": true, "value": "", "dialog_message": "Another active session exists for same username. That session will end. Proceed?" }, "clientid": 46033}
To proceed further, we are posting the below JSON payload:
{ "htmlrfid": "gAAAAABpEEH8zI0_M7e_eTKJxdrdaqXUeQijp8psLp8nvzgon26lJ01kh6yckLp61ygbrRNvWkYgYnDlpxX5tMY1SJlrjWNbHQ==", "clientid": 46033, "data": { "value": "yes" }, "key_pressed": "Ctrl-A"}
0