Claim Search by Claim Number

Searches for claims by the passed in claim numbers.

URL
  
https://secure.healthx.com/api/ClaimsV1/Search/Number/{claimnumbers}

HTTP Verb

  
POST

Parameters
  • claimnumbers: A comma separated list of claim numbers.
  • 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 Request
            <MemberNumberSearch>
              <memberids>123</memberids>
              <begindate>1973-01-01</begindate>
              <enddate>2020-01-01</enddate>
              <start>1</start>
              <count>100</count>
              <searchmodifiers>sortfield:claimnum|sortdir:ascending</searchmodifiers>
            </MemberNumberSearch>
           


   Example 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>
            </SearchResults>

Comments