Skip to content

Instantly share code, notes, and snippets.

@pvillard31
Created April 6, 2019 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pvillard31/39f2e61216f4e3f48051f3c76cb6d937 to your computer and use it in GitHub Desktop.
Save pvillard31/39f2e61216f4e3f48051f3c76cb6d937 to your computer and use it in GitHub Desktop.
$ cat test.csv
name,company
Pierre Villard,Google
$ curl --data-binary "@test.csv" -H "Content-Type: text/csv" -X POST http://localhost:9090/
[ {
"name" : "Pierre Villard",
"company" : "Google"
} ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment