Developer Services‎ > ‎PBM Claims‎ > ‎

Member Date Search (PBM Claims - search/date)

Retrieves the logged in user's PBM claims between the given date range.

URL

https://secure.healthx.com/api/PBMV1/Search/Date

HTTP Verb

POST

Parameters

  • 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 or descending (default: ascending)
    • sortfield: claimnum, dosend, dosstart, employeename, employergroupnum, indpatientid, memberid, provname, ptdob, or ptname

   Example Request
            <MemberDateSearch>
              <begindate>1973-01-01</begindate>
              <enddate>2020-01-01</enddate>
              <start>1</start>
              <count>100</count>
              <searchmodifiers>sortfield:claimnum|sortdir:ascending</searchmodifiers>
            </MemberDateSearch>
            

   Example Response
            <SearchResults>
              <Records>
                <PBMClaimRecord>
                  <AHFS>68441</AHFS>
                  <AWPCost>Medical</AWPCost>
                  <ActionFlag>S</ActionFlag>
                  <AddDateTime>2010-01-04T10:51:16.503</AddDateTime>
                  <!-- Remaining fields cut for brevity -->
                </PBMClaimRecord>
              </Records>
              <TotalRecordCount>1</TotalRecordCount>
            </SearchResults>