GET v1/order/send?EMRLinkOrderID={EMRLinkOrderID}&sendType={sendType}
Send Order: Send an existing order to the service provider.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
EMRLinkOrderID |
EMR-Link generated EMRLinkOrderID. |
string |
Required |
sendType |
Designates whether the order should be sent to the lab or PSC (patient service center). |
SendType |
Required |
Body Parameters
None.
Response Information
Resource Description
SendOrderResponseName | Description | Type | Additional information |
---|---|---|---|
ResponseMessage |
Additional messages about status of send operation. |
string |
None. |
Error |
Will be set to True if any errors occur during the processing of the API method. |
boolean |
None. |
ErrorMessage |
Will contain an error message string if Error is True. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "ResponseMessage": "sample string 1", "Error": true, "ErrorMessage": "sample string 3" }
application/xml, text/xml
Sample:
<SendOrderResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Error>true</Error> <ErrorMessage>sample string 3</ErrorMessage> <ResponseMessage>sample string 1</ResponseMessage> </SendOrderResponse>