Retrieves eligibility records matching a set of member IDs or a set of social security numbers. URL https://secure.healthx.com/api/EligibilityV1/Admin/Search/ID HTTP Verb POST Parameters ids: A comma separated list of member IDs, SSNs, alt member IDs, and person IDs. 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: scope: member, dependent, both (default: member) firstname: (any first name) firstnamepartial: true, false (default: false) lastname: (any last name) includeinactive: true, false (default: false) dob: (any date in format yyyy-mm-dd) sortdir: ascending, descending (default: ascending) sortfield: bnftplan, dob, firstname, gndr, groupnum, lastname, memberid, ssn fullrecord: true, false (default: false) Example Request Body <AdminIDSearch> <ids>1234</ids> <start>1</start> <count>100</count> <searchmodifiers>lastname:Smith|scope:dependent</searchmodifiers> </AdminIDSearch> Example Response <SearchResults xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Records> <EligibilityRecord> <Accumulators i:nil="true" /> <AddDateTime>2010-01-01T00:00:00</AddDateTime> <Addr2 /> <Address>123 Main St.</Address> <Age>37</Age> <!-- Remaining fields cut for brevity --> </EligibilityRecord> </Records> <TotalRecordCount>1</TotalRecordCount> </SearchResults> |
Developer Services > Eligibility 1.0 >