Developer Services‎ > ‎claimsv1‎ > ‎

admin/search/group

Retrieves claims by the given group number.

URL

https://secure.healthx.com/api/ClaimsV1/Admin/Search/Group/{groupnum}

HTTP Verb

POST

Parameters

  • groupnum: A payor group number.
  • 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
            <AdminGroupSearch>
              <begindate>1973-01-01</begindate>
              <enddate>2020-01-01</enddate>
              <start>1</start>
              <count>100</count>
              <searchmodifiers>sortfield:claimnum|sortdir:ascending</searchmodifiers>
            </AdminGroupSearch>
           


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