Need An Email Marketing Solution For All Of Your Customers?

Partner With VerticalResponse!

getUserByEmailAddress


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.

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]
The user whose email address was specified if that user exists.

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'
})