Import form data on server
I would like to import form data on the server, then download filled form to web app.
Assumptions:
1. The PDF file is stored on the server
2. The PDF file has form fillable fields
3. The PDK file is filled using data from SQL DB on the server
4. The PDF file is accessed on server using RESTful API endpoint
Workflow:
1. The user taps a button to download PDF file in a web app
2. API endpoint receives HTTP request to download file
3. API retrieves PDF file from server file system
4. API retreives data to import from SQL DB
5. API imports data into PDF file
6. API responds to HTTP request with PDF file and filled data
7. The user receives PDF file and then opens or saves to local file system
Thanks for your help, mark-g
