Developer Services‎ > ‎claimsv1‎ > ‎

admin/search/patient

Retrieves claims by the given patient ID.

URL

https://secure.healthx.com/api/ClaimsV1/Admin/Search/Patient


HTTP Verb

POST

Parameters

  • patientids: A comma separated list of patient 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 Request
          
  <AdminPatientSearch>
              <patientids>123</patientids>
              <begindate>1973-01-01</begindate>
              <enddate>2020-01-01</enddate>
              <start>1</start>
              <count>100</count>
              <searchmodifiers>sortfield:claimnum|sortdir:ascending</searchmodifiers>
            </AdminPatientSearch>

           

   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 -->
                </a:HealthClaimRecord>
              </Records>
              <TotalRecordCount>1</TotalRecordCount>
            </SearchResults>

Comments