Importing the Postman collection
1
Download the spec
2
Import into Postman
Click Import in the top left, drop
flexprice-openapi.json on the dialog, and choose Postman Collection as the import target. Postman creates a collection named Flexprice API with one folder per tag.3
Create an environment
Open Environments, click +, and add two variables:
Create one Postman environment per Flexprice environment (sandbox and production) so switching is one dropdown and a production key never sits in a sandbox request.
4
Set the auth on the collection
Open the collection, go to Authorization, choose API Key, and set:
Every request inherits it. If the import set the base URL as a literal, replace it with
{{baseUrl}} in the collection Variables tab.5
Send a request
Open Customers > Query customers, send it with an empty JSON body
{}, and confirm you get an items array back.Pointing Postman at a self-hosted instance
PointbaseUrl at your own deployment, for example http://localhost:8080/v1, and use a key created in that deployment. The self-hosting guide covers the local key.

