Testing Square APIs with Postman
Learn how to use our Postman collection to test Square APIs.
What is Postman?
Postman is an app for easy RESTful API exploration. You can use Postman to test API calls multiple times without having to write code or install our SDKs. And you can save multiple sets of credentials so you can quickly and easily test API calls in sandbox and production.
Step 1: Get the Postman collection
- If you have not already, visit https://www.getpostman.com/ and install the preferred version for your system.
- Click the Run in Postman button below to open Postman and import the Square Connect API Postman collection.
Step 2: Create your Postman environment
Our collection makes use of Postman's environment variables to easily manage your API credentials. Start by creating a sandbox environment.
- Open the "Environment options" panel by clicking on the gear icon, then click Manage Environments. To create a new environment, click Add.
- Name your environment something that indicates it is using sandbox credentials, for example "Square Sandbox".
- Add a key/value pair with "access_token" as the key and your sandbox access token as the value.
- Add a key/value pair with "location_id" as the key and a sandbox location ID as the value.
- When you are finished adding key/value pairs, click Add. Now, any test calls you make using this environment
will automatically fill in the
access_token
andlocation_id
with your sandbox credentials.
You can also create production environments that use your production credentials and locations instead of sandbox assets.
Step 3: Make a call to the Charge endpoint
Make a call to the Charge endpoint using your sandbox environment.
- Click the dropdown menu next to the gear icon and choose your sandbox environment from the menu.
- Open the Transaction folder, then click Charge.
- Click Send. Postman will use your sandbox credentials to make the call.
The Square Connect API collection includes folders for each Square Connect v2 API with pre-configured calls you can use to test each endpoint. Read Getting Started with Postman on the Square Corner blog for a step-by-step walkthrough demonstrating how to create a customer profile and reference it in a sandbox transaction.