Developer Services‎ > ‎claimsv1‎ > ‎

Payments/Search/CheckNumMemberID

Retrieves claims by the given claim ID.

URL

https://secure.healthx.com/api/ClaimsV1/Provider/Payments/CheckNumMemberID

HTTP Verb

POST

Parameters

  • 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: dosend, dosstart, checknum, provpddt
    • tins: a comma delimited list of Tax ID numbers used to limit the return results. These numbers must already be among those Tax IDs that the user already has access to. By default, the search will execute for all Tax ID numbers the user has access to.
    • checknum: the check number of the claim line(s) to return.*
    • memberid: the member ID of the claim header associated with the claim line(s) to return.
        * Either checknum or memberid is required.

 Example Request (JSON)

{
    "start":1,
    "count":10,
    "searchmodifiers":"sortdir:|sortfield:|tins:xxxxxxxxx111|checknum:|memberid:4879781"
}
            

   Example Response (JSON)
 {
    "Records":
        [
            {
                "CheckAmt":50.0000",
                "CheckNum":"1029737-919",
                "CheckPayee":"Dr. Fred Quarry",
                "ClaimHdrId":"00000000-0000-0000-0000-000000000000",
                "OrgProviderID":"xxxxxxxxx111",
                "PayorPDDT":"\/Date(1080273600000-0400)\/"
            }
        ],
    "TotalRecordCount":1,
    "DeniedRecordCount":0
}
            
Comments