Get All Transactions
GET {{url}}/rcm/eligibility/v1/transactions
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
patientId | string | (Optional) The unique ID for the target patient. If provided, all transactions for the provided tenantID are filtered to include only those for that patientID. | |
status | string | (Optional) The status of the eligibility transaction (e.g. 'eligible', 'ineligible', 'expired'). |
Available values : eligible, eligible_non_primary, ineligible, pending, conditional, payer_unavailable, payer_not_in_system, processing_error, patient_unknown |
| hash
| string | | (Optional) A generated value for determining the uniqueness of a transaction. This value is a hashed concatenation of demographic data on the transaction |
| startDateTime
| string | | (Optional) The start date for the report. Start date must be before the end date |
| endDateTime
| string | | (Optional) The end date for the report. Must occur after the provided start date |
| sort
| string | | (Optional) The property to order the results of the report by. Defaults to '-createDate', negative sign is 'desc'
Available values : createDate, -createDate, patientName, -patientName, patientDOB, -patientDOB |
| offset
| number | | (Optional) Pagination. The offset number to retrieve, which is determined by the limit. For example,if limit is 30 and offset is 0, then the response data will include records 130; If offset is 30 and limit is 30 then the response data will include records 3059. |
| limit
| number | | (Optional) Number of transactions to return per page. Must be greater than 0 and less than or equal to 100. Defaults to 30. |
| returnTotalCount
| boolean | | (Optional) Whether or not to return the total number of records matching the supplied query parameters under the x-total-number HTTP response header. Defaults to false |