Need An Email Marketing Solution For All Of Your Customers?

Partner With VerticalResponse!

refresh


The refresh() method refreshes an existing session created by login(), extending the timeout
window of the existing session by the amount specified in the session_duration_minutes
argument to the login() call that created the session.

Input

[vrtypens:refreshArgs]

session_id [xsd:string] (required)
Your API session id.

Output

[xsd:boolean]
The output is always true.

Examples

Perl

$vr->refresh( {
    session_id =>$sid
} );

PHP

$vr->refresh( array(
   'session_id' => $sid,
) );

Ruby

vr.refresh({
   'session_id' => sid,
})

C#.NET

refreshArgs objRefresh = new refreshArgs();
objRefresh.session_id = _sSessionId;

objVR.refresh(objRefresh);