DELETE api/LaboratoryOrderResult/{id}
Delete laboratory referral response. This is intended for bad laboratory results.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Identification number of referral response. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
LaboratoryOrderResponseName | Description | Type | Additional information |
---|---|---|---|
Status |
action status type indication weather action resulted with success, error or warning |
ResponseStatusEnum |
None. |
StatusDescription |
status description shows detailed text about action status |
string |
None. |
ReferralResponseId |
referral id (accession id) represents unique id in which radiology order is saved in eMedit sytem. use this id to uniquely referr to radiology order |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "status": 1, "statusDescription": "sample string 1", "referralResponseId": 2 }
application/xml, text/xml
Sample:
<LaboratoryOrderResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eMedit.eDoktor.WebApi.Models.API.Laboratory"> <ReferralResponseId>2</ReferralResponseId> <Status>Success</Status> <StatusDescription>sample string 1</StatusDescription> </LaboratoryOrderResponse>