Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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 to SmartAdvocate (POST request from Retrieval service)

Invoice for servicing should be send in POST request to endpoint: https://sa.yourlawyer.com:4430/sasvcdev/SAWebService.svc/Retrieval/MedicalRequests/Invoice

...


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 to SmartAdvocate (Alternative Interface without RecordID)

https://sa.yourlawyer.com:4430/sasvcdev/sawebservice.svc/receiver/RetrievalService/Invoice/

JSON structure:

Code Block
{
	"CaseNumber": "9000002",
	"Type": "Medical Records",
	"InvoiceNo": "123456P",
	"InvoiceDate": "2020-05-26T00:00:00",
	"Amount": 1235.99,
	"Comments": "test"
}


Fields description:
CaseNumber(string) – SA Case number
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

...