Dude, curl make request can be finicky. Your syntax looks fine, but maybe the API needs an auth header? Like:
`-H "Authorization: Bearer your_token"`
For POST, ensure your JSON is valid—use `jsonlint.com` to check.
Also, if you’re on Windows, escape quotes with `\"` instead of single quotes.
`-H "Authorization: Bearer your_token"`
For POST, ensure your JSON is valid—use `jsonlint.com` to check.
Also, if you’re on Windows, escape quotes with `\"` instead of single quotes.
