The getListMemberByAddressHash() method retrieves exactly one member with the specified address_hash from a specified list.
Input
[vrtypens:getListMemberByAddressHashArgs]
session_id [xsd:string] (required)
Your API session id.
list_id [xsd:int] (required)
 The id of the list being searched.
address_hash [xsd:string] (required)
 The value of the “address_hash” NVPair in the desired ListMember’s dictionary of fields.
Output
 [vrtypens:ListMember] 
Examples
Perl
$vrapi->getListMemberByAddressHash( {
    session_id => $sid,
    list_id => $lid,
    address_hash => 'f3f2f0f3a3',
} );
PHP
$vrapi->getListMemberByAddressHash( array(
    'session_id'   => $sid,
    'list_id'      => $lid,
    'address_hash' => 'f3f2f0f3a3',
) );
Ruby
vr.getListMemberByAddressHash({
    'session_id'   => sid,
    'list_id'      => lid,
    'address_hash' => 'f3f2f0f3a3',
})
