Developer Services‎ > ‎claimsv1‎ > ‎

admin/search/member

URL
https://secure.healthx.com/api/ClaimsV1/Admin/Search/Member

HTTP Verb
POST

Parameters
  • memberids: A comma separated list of member IDs.
  • begindate: A date in YYYY-MM-DD format.
  • enddate: A date in YYYY-MM-DD format.
  • 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:
    • sortdir: ascending, descending (default: ascending)
    • sortfield: claimnum, dosend, dosstart, employeename, employergroupnum, indpatientid, memberid, provname, ptdob, or ptname

   Example XML Request
            <AdminIDSearch>
              <memberids>123</ids>
              <begindate>1973-01-01</begindate>
              <enddate>2020-01-01</enddate>
              <start>1</start>
              <count>100</count>
              <searchmodifiers>sortfield:claimnum|sortdir:ascending</searchmodifiers>
            </AdminIDSearch>
            

   Example XML Response
  <SearchResults>
   <Records>
     <HealthClaimRecord>
       <ADMSource>Self</ADMSource>
       <ADMType>Medical</ADMType>
       <AddDateTime>2010-01-04T10:51:16.503</AddDateTime>
       <Adjust>498.0000</Adjust>
       <!-- Remaining fields cut for brevity -->
     </HealthClaimRecord>
   </Records>
   <TotalRecordCount>1</TotalRecordCount>
   <DeniedRecordCount>0</DeniedRecordCount>
  </SearchResults>

Comments