One of the options available to integrations to pass documents to SmartAdvocate is SFTP/FTPS drop.
Typically secure ftp site will be configured on client’s network (or on SA Cloud system) for integrations to drop documents that should be delivered to SmartAdvocate.
Two formats are supported.
Passing information in the file name
If you are using this format you will need to name each file according to the following pattern.
SmartAdvocate CaseNumber_CategoryName_SubCategoryName_ProviderName_Description.ext
For example: 523485_Medical_Records_Good Samaritan Hospital_MRI Records.pdf
Passing information in the accompanying XML file
<?xml version="1.0"?> <document> <description>Comment</description> <record_filename>test.pdf</record_filename> <provider>Provider Name</provider> <category>Category Name</category> <subcategory>Sub Category Name</subcategory> <case_number>SmartAdvocate CaseNumber</case_number> </document>
Add Comment