Postman Desktop installed (browser version not recommended)
Created a Postman account as part of the process
Subscription to the API you want to use
Open Postman and log in with your Postman account
Access the appropriate API Developer Portal
Sign in using your Functional Account
Click on API Catalog at the top
Use the Search box to find the API by name
Some APIs have multiple versions so be sure to select the one you subscribed to
If you are in the Dev/Test API Portal, there may be Dev and Test versions; check the Environment field near the bottom of the API box to select the correct one
Click on the REST tab
Copy the Base URL Path
Expand the endpoint you want to use by clicking the down arrow
Note the endpoint value (e.g. /students)
Click + above the canvas
Select GET or POST depending on the endpoint
Paste the Base URL PATH from above into the URL box
Add a slash (/) followed by the endpoint and/or input
Click the Authorization tab
Auth Type = Basic Auth
Enter your Boomi API username and password
Access the API Developer Portal
Sign in using your Functional Account
Click on Subscriptions at the top
Expand Application and click on the name of the API
Click Copy next to the API Key box (Do Not click the Generate Replacement API Key link unless you need to reset the key!)
Click the Headers tab
Key = x-api-key
Value = The API key that you copied from the API Developer Portal
Click the Body tab
Select raw
Select JSON from the dropdown to the right
Copy and paste the example request from the API Developer Portal
Enter values in place of "string"
Click Send
View data returned in the Response window
A 200 status code indicates success
If no data is returned, the response will be empty but still show status code 200
Other response codes are listed on the REST tab in the API Catalog to assist with troubleshooting
Tips:
Create Collections in Postman to organize your APIs
Set up the Basic Auth at the Collection level
Use "Inherit from Parent" for individual requests
If credentials change, update them once in the Collection