admin/search/name

Retrieves eligibility records matching a member last name and date of birth.

URL

https://secure.healthx.com/api/eligibilityv1/Admin/Search/Name
  
HTTP Verb

POST

Parameters

lastname: A member or dependent's last name.
dob: The member or dependent's date of birth (format yyyy-mm-dd).
start: The index of the first record to return (starting with 1).
count: The number of records to return (maximum: 100).
searchmodifiers: A set of name:value pairs, delimited by the pipe character. The allowable names and values are as follows:
    mode: memberid, ssn, both (default: both)
    scope: subscriber, dependent, both (default: both)
    memberid: comma separated list of member ids (default: none)
    groupnum: (any group number)
    firstname: (any first name)
    firstnamepartial: true, false (default: false)
    lastnamepartial: true, false (default: false)
    includeinactive: true, false (default: true)
    sortdir: ascending or descending (default: ascending)
    sortfield: data field name (multiple sortfields can be specified by separating each by a comma)

   Example XML Request Body

        <AdminNameSearch>
          <lastname>Smith</lastname>
          <dob>1970-01-25</dob>
          <start>1</start>
          <count>100</count>
          <searchmodifiers>firstname:John|scope:dependent</searchmodifiers>
        </AdminNameSearch>
            

   Example XML Response

         <SearchResults xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
           <Records>
             <EligibilityRecord>
               <Accumulators i:nil="true" />
               <AddDateTime>2010-01-01T00:00:00</AddDateTime>
               <Addr2 />
               <Address>123 Main St.</Address>
               <Age>37</Age>
               <!-- Remaining fields cut for brevity -->
             </EligibilityRecord>
           </Records>
           <TotalRecordCount>1</TotalRecordCount>
           <DeniedRecordCount>0</DeniedRecordCount>
         </SearchResults>
Comments