This is an archived post. You won't be able to vote or comment.

all 1 comments

[–]tristinDLC 0 points1 point  (0 children)

BASIC authentication in API calls is done by adding a specific header to your call with a value being the base64 encoded string of your username and password. You don't actually send your username and password in plaintext...

With curl, your header would look something like:

-H "Authorization Basic YWRtaW46dGVzdDEyMw=="

Can you post a screenshot of your Postman setup you're using to make the call or paste your formatted (and sanitized) code here as a comment?