Integration: API Testing using Postman

Creating a request via postman for testing APIs – Using API Key

  • Open an new request window in Postman
  • select the request type: GET,POST,PUT,DELETE
  • Provide the API url
  • Select “No Auth” in Authorization” subtab
  • In Headers subtab, add key as “Authorization” and value as “Bearer APIKeyvalue(replace APIKeyvalue with key provided by client)
  • Click send button
  • If the request was success, the status will be 200 OK,and the data returned will be displayed in the subtab below.

Leave a comment

Your email address will not be published. Required fields are marked *