Search code examples
restauthenticationpostman

Set access token with Postman


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?


Solution

  • You can add a header parameter with Authorization as key and Bearer <insert_your_token_here> as value.