zet.oliverdavies.uk/source/_zets/24.md

444 B

title date tags related use
POSTing data from a JSON file 2024-09-14 13:39:01
Linux
curl
Sending POST requests with curl
zets

When sending JSON data in a POST request, instead of writing it inline with the --data or --json option, a filename can be entered - prefixed with an @ symbol.

For example, to POST the data from a data.json file:

curl --insecure --json @data.json https://mysite.com/webhook