...
Code Block | ||
---|---|---|
| ||
[ { "ID": null, "RecordId": 30983, "Message": "test" } ] |
Insert Retrieval Service Order No in Medical request (POST request from Retrieval service)
Order No of Retrieval service should be send in POST request to the endpoint: https://sa.yourlawyer.com:4430/sasvcdev/SAWebService.svc/Retrieval/MedicalRequests/InsertOrderID
JSON structure:
Code Block | ||
---|---|---|
| ||
[
{
"RecordId": 11585,
"OrderId": "123xyz"
}
] |
Fields description:
RecordID (integer) – SA record ID
OrderID (string) – Retrieval Order ID
Create a copy of Medical Request (POST request from Retrieval service)
Medical request will be copied. Usually this request is needed when the Retrieval Service has split the request into 2 on its side
POST request should be send to the endpoint: https://sa.yourlawyer.com:4430/sasvcdev/SAWebService.svc/Retrieval/MedicalRequests/Copy
JSON structure:
Code Block | ||
---|---|---|
| ||
{
"RecordId":11585,
"OrderId":"123xyz3",
"Message":"test copy",
"Status":"Completed"
} |
Fields description:
RecordID (integer) – SA record ID
OrderID (string) – Retrieval Order ID
Message (string) – message - Comments will be added to Retrieval Provider Notes of SA Medical Request
Status (string) – Status of the request. Request in SA will update depends of settings.
Responce:
Code Block | ||
---|---|---|
| ||
{
"RecordId":11586
} |