Summary:
Retrieves data from the session context storage.
Request specification:
Name |
Min/Max |
Type |
Description |
|
|
|
|
|
|
|
|
|
|
|
Session ID. |
|
|
|
Key. |
|
|
|
|
Returns:
Name |
Min/Max |
Type |
Description |
|
|
|
|
|
|
|
|
|
|
|
Key. |
|
|
|
Value. |
|
|
|
|
Description:
The request retrieves the data from the session context storage that was saved their earlier using the put
call. Specify the same key name(s) that you used when you were saving the data that you want to retrieve.
Example:
Input
<packet version="4.0.0" id="2">
<target>sessionm</target>
<data>
<sessionm>
<get>
<session_id>vzl.40000.c60e1c63-cf1f-467a-ad68-e9261ac3c22d.14c446863b2t7e87</session_id>
<key>mykey</key>
</get>
</sessionm>
</data>
</packet>
Ouput
<packet id="16c44686934tf3e" version="4.0.0">
<origin>sessionm</origin>
<session>vzl.40000.c60e1c63-cf1f-467a-ad68-e9261ac3c22d.14c446863b2t7e87</session>
<data>
<sessionm>
<data>
<key>mykey</key>
<value>c29tZSB2YWx1ZQ==</value>
</data>
</sessionm>
</data>
</packet>