Provider search retrieves eligibility records matching a last name.
Request URL
https://secure.healthx.com/api/eligibilityv1/provider/search/name
HTTP VerbPOST
Parameters - lastname: A member or dependent's last name.
- dob: The member or dependent's date of birth (format yyyy-mm-dd).
- 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:
- orgproviderid: an organization's internal identifier for a provider (default:none).
- mode: Allowed values are "memberid", "ssn", or "both" (default:both).
- scope: subscriber, dependent, both (default:both).
- memberid: comma-separated list of member ids (default: none).
- groupnum: a comma delimited list of group numbers.
- firstname: the first name of the member for whom to search.
- firstnamepartial: Whether or not to use a partial match on the member's first name. Allowed values are "true" or "false" (default: false).
- lastname: the last name of the member for whom to search.
- lastnamepartial: Whether or not to use a partial match on the member's last name. Allowed values are "true" or "false" (default: false).
- includeinactve: "true" returns inactive eligibility records as well as active ones (default:false)
- sortdir: ascending or descending (default: ascending).
- sortfield: any eligibility data field. Specify multiple fields by separating them with a comma.
- fullrecord: true, false (default: false)
Sample request body
<ProviderNameSearch>
<lastname>Roberstone</lastname>
<dob>1970-02-01</dob>
<start>1</start>
<count>5</count>
<searchmodifiers>sortdir:descending|sortfield:lastname</searchmodifiers>
</ProviderNameSearch>
Return Sample<TotalRecordCount>3</TotalRecordCount>
<Records>
<EligibilityRecord>
<Accumulators i:nil="true"/>
<AddDateTime>2009-01-19T11:18:17.18</AddDateTime>
<Addr2 i:nil="true"/>
<.../>
<Zip>55333 </Zip>
</EligibilityRecord>
<EligibilityRecord>
<Accumulators i:nil="true"/>
<AddDateTime>2008-05-22T12:48:31.16</AddDateTime>
<Addr2 i:nil="true"/>
<.../>
<Zip>55444 </Zip>
</EligibilityRecord>
</Records>
|