Skip to main content

Postman Instructions

Setting up a postman request

Setting up Postman API for the First TIme:
  1. Go to Postman.comhttps://www.postman.com/downloads/ and signdownload up for free.

  2. Go to your Workspaces and create a new Collection for your tests.
For each new test, you can click the three dots next to your collection or right-click it and add a request.
*You can save your requests and add comments for future reference and when re-running the tests during releases.
postman.

Sending a Request:

  • Click the New Request button (looks like a +)
  • You'll need to know what endpoint you are using, which are going to be located here: http://account-staging.efilecabinet.net/api/apihelp/index.html
  • Once you know what type of endpoint you are using, update the type (GET, POST, PUT, DELETE, etc...)

    image.png


  • Paste the endpoint into the Request URL box and make sure to update the URL to point to the desired environment (Staging, Prod, etc...)

    image.png


  • Select Body and paste the needed info into the Request Body and make sure to select the type (in this case it is raw JSON)

    image.png


  • Click Authorization
  • Select Bearer Token
  • Add a valid Token into the field
    • The quickest way to grab an access token is to log in to the desired environment (Staging in this example)
    • Open the dev tools and select Network -> Configuration and you'll find the Bearer token:

      image.png

  • Click Send
  • Check the Response that will display at the bottom of Postman
  • For each new test, you can click the three dots next to your collection or right-click it and add a request.
    *You can save your requests and add comments for future reference and when re-running the tests during releases.