Hi, I need to produce the equivalent of this curl command with Postman.
curl -X POST ‘https://domain.url/v1/property.list’
-u API_KEY:
-H “Content-Type: application/json”
When I use Basic Auth and enter the API_KEY into the username, Postman produces however this code:
curl --location --request POST ‘https://domain.url/v1/property.list’
–header ‘Content-Type: application/json’
–header 'Authorization: Basic ’
I couldn’t find any info on if the curl option -u plain_text_username is the equivalent to --header 'Authorization: Basic '. Any thoughts about this or any thoughts about how to make Postman use the -u option?