Previous page

Next page

Locate page in Contents

Print this page

get

Summary:

Retrieves data from the session context storage.

Request specification:

Name

Min/Max

Type

Description

get

 

 

 

{

 

 

 

session_id

1..1

string

Session ID.

key

0..[]

string

Key.

}

 

 

 

Returns:

Name

Min/Max

Type

Description

data

0..[]

 

 

{

 

 

 

key

1..1

string

Key.

value

1..1

anyType

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>

Please send us your feedback on this help page