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