I\'m working with an API and I have to send a POST request. I know how to set a header (-H) and (-d) is the body, but what is \"--user\".
If I submit this with Postm
--user (or -u) in curl provides a basic auth to your request.
--user
-u
In Postman you can achieve the same result with a choice in Authorization tab.
--user ":" becomes
--user ":"