Retrieves preauths by the given group number.
URL
https://secure.healthx.com/api/AuthorizationsV1/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. Multiple sortfields can be specified by separating each by a comma. The allowable names and values are as follows:
- datefield: DateOfService or RequestDate
- dob: date of birth to search with
- location: location to search for
- patientname: patient name to search for
- sortdir: ascending, descending (default: ascending)
- sortfield: claimnum, dosend, dosstart, employeename, employergroupnum, indpatientid, memberid, ptdob, ptname
Example Request
<AdminGroupSearch>
<begindate>01/01/2013</begindate>
<enddate>01/01/2014</enddate>
<start>1</start>
<count>10</count>
<searchmodifiers>sortdir:descending|sortfield:dosstart,claimnum</searchmodifiers>
</AdminGroupSearch>
Example Response
<SearchResults> <Records> <AuthorizationRecord> <AddDateTime>2012-06-04T00:00:00</AddDateTime> <AdmType i:nil="true"/> <AfterTheFactFlag i:nil="true"/> <AltMemberID>alt-936505</AltMemberID> <AltPatientID>alt-936505</AltPatientID> <AuthComments i:nil="true"/> <AuthNumber>1LKR100</AuthNumber> <!-- Remaining fields cut for brevity --!> </AuthorizationRecord> </Records> <TotalRecordCount>3</TotalRecordCount> <DeniedRecordCount>0</DeniedRecordCount> </SearchResults>
|
|