Partner API Only
The getUser() method retrieves one VerticalResponse user with the specified id.
Please note that this method will never provide any User’s password.
The getUser() method retrieves one VerticalResponse user with the specified id.
Please note that this method will never provide any User’s password.
Input
session_id [xsd:string] (required)
Your API session id.
user_id [xsd:int] (required)
The id of the user being searched for.
Output
[vrtypens:User]
Examples
Perl
$vrapi->getUser( { session_id => $sid, user_id => $uid, } );
PHP
$vrapi->getUser( array( 'session_id' => $sid, 'user_id' => $uid, ) );
Ruby
vr.getUser({ 'session_id' => sid, 'user_id' => uid, })