Last active
January 27, 2020 11:29
-
-
Save moraisaugusto/8288791da391c5a01efe8ae6bf5616e9 to your computer and use it in GitHub Desktop.
Multidata POST using cURL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -i -X POST -H "Content-Type: multipart/form-data" \ | |
-F "file=@/home/USERNAME/YOUR_FILE_HERE.xlsx \ | |
-F "param1=4" \ | |
-F "param2=CALCULATED" \ | |
-F "period=1" \ | |
-F "effective_date=2020-31-31" \ | |
http://localhost:8080/entrypoint_x | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment