...
Fields description:
RecordID(integer) – SA record ID (Record have to marked as Read.)
Status(string) – Status of request. Request in SA will update depends of settings.
Sending Invoices (costs) to SmartAdvocate (POST request from Retrieval service)
Invoice for servicing service should be send in POST request to endpoint: https://sa.yourlawyer.com:4430/sasvcdev/SAWebService.svc/Retrieval/MedicalRequests/Invoice
It will create a records in case Disbursements (costs) section.
JSON structure:
Code Block |
---|
[{ "RecordID": 30969, "Type": "Medical Records", "InvoiceNo": "123456P", "InvoiceDate": "2020-05-26T00:00:00", "Amount": 1235.99, "Comments": "" }] |
Fields description:
RecordID(integer) – SA record ID
Type(string) – Type of record (should match with client's record otherwise default parameter will be used)
InvoiceNo(string) – Invoice number
InvoiceDate(date) – Invoice date
Amount(decimal) – Invoice Amount
Comments(string) – text comments if need to be added to invoice record
Sending Invoices (costs) to SmartAdvocate (Alternative Interface without RecordID)
https://sa.yourlawyer.com:4430/sasvcdev/SAWebService.svc/Retrieval/MedicalRequests/Invoice
...