The ATL COM module drgValidator provides methods to
browse, search & validate records of the DRG tariff
browse, search & validate records of the DRG tariff
API browser of drgValidator100 COM module
ISearch::GetServices method | |||
---|---|---|---|
This method has a Restful Webservice representation only! Method for collecting all service records of the resulting search space in one call without the necessity to call the record positioning methods and the appropriate properties of this interface. The services are returned as JSON array however large that search space might be. So this might be a memory and performance bottleneck. Possibly, one might call the IDRGSearch::GetRecordCount method to get the size of the search space prior to call GetServices unconditionally. |
|||
Restful webservice calling syntax | |||
[POST] | /baseURL/ISearch/GetServices | ||
[JSON input data] | pISearch: | longValue, //interface address |
|
[JSON result array] | { pbstrTariffType: pbstrCode: pbstrName: pbstrMDC: peServiceType: peBillable: pdAverageLengthOfStay: pdCostWeight: pdTP: plLowTrimPoint: plHightTrimPoint: plHightTrimPoint2: pdValidTo: pdValidFrom: pbStatus: |
"utf8StringValue", "utf8StringValue", "utf8StringValue", "utf8StringValue", longValue, longValue, doubleValue, doubleValue, doubleValue, longValue, longValue, longValue, "stringISODateValue", "stringISODateValue", booleanValue }, |
|
[HTTP result status] | 200 | Return status 200 signals a successful method call | |
204 | Return status 204 (noContent) signals that the end of an iteration is reached | ||
>= 400 | Return status >= 400 signals an unsuccessful function call. The returned JSON{errorCode: code, errorText:"text"} supplies the error message the same as GetAbortInfo() would do. | ||
Calling argument description | |||
[out] BSTR | *pbstrTariffType | The tariffType of the currently focused service | |
[out] BSTR | *pbstrCode | The code of the currently focused service | |
[out] BSTR | *pbstrName | The name of the currently focused service | |
[out] BSTR | *pbstrMDC | The major diagnostic code (MDC) that the currently focused service belongs to | |
[out] ServiceType | *peServiceType | The type of service defined for the currently focused service | |
[out] YesNoType | *peBillable | The flag indicating whether the currently focused service is billable (enYes) or not (enNo). | |
[out] double | *pdAverageLengthOfStay | The average length of stay of the currently focused service | |
[out] double | *pdCostWeight | The cost weight of the currently focused service | |
[out] double | *pdTP | The tax point (TP) of the currently focused service | |
[out] long | *plLowTrimPoint | The low trim point (LTP) of the currently focused service | |
[out] long | *plHightTrimPoint | The high trim point (HTTP) of the currently focused service | |
[out] long | *plHightTrimPoint2 | The high trim point 2 (HTP2) of the currently focused service | |
[out] DATE | *pdValidTo | The validity end date of the currently focused service | |
[out] DATE | *pdValidFrom | The validity start date of the currently focused service | |
[out,retval] VARIANT_BOOL | *pbStatus | Boolean return status | |