I have a rest API and I want to send a request to it using Postman. The request should be send with a bearer authentication token. How can I add this?
You can add a header parameter with Authorization
as key and Bearer <insert_your_token_here>
as value.