Need An Email Marketing Solution For All Of Your Customers?

Partner With VerticalResponse!

getListMemberByHash


The getListMemberByHash() method retrieves exactly one member with the specified hash from a specified list.

Input

[vrtypens:getListMemberByHashArgs]

session_id [xsd:string] (required)
Your API session id.
list_id [xsd:int] (required)
The id of the list being searched
hash [xsd:string] (required)
The hash of the list member being searched for

Output

[vrtypens:ListMember]
The output is the list member.

Examples

Perl

$vrapi->getListMemberByHash( {
    session_id => $sid,
    list_id => $lid,
    hash => 'f3f2f0f3a3'
} );

PHP

$vrapi->getListMemberByHash( array(
    'session_id' => $sid,
    'list_id'    => $lid,
    'hash'       => 'f3f2f0f3a3',
) );   

Ruby

vr.getListMemberByHash({
    'session_id' => sid,
    'list_id'    => lid,
    'hash'       => 'f3f2f0f3a3',
})