desription | section |
---|---|
This page explains how to use Postman Collections to access Auth0 APIs. |
apis |
To install the Postman Collection you will need to have installed the Postman App for Windows, Mac or Chrome. You can download any of these from the Postman Apps page.
Next, head over to our new API Landing Page, and install the Collection you want to use by clicking on the relevant "Run in Postman" button.
Postman will prompt whether you want to open the Collection in Postman for Chrome or Postman for Windows / Mac. Select the application you have installed.
Once you have made a selection, the selected Postman application will be opened and the collection will be imported.
Our API Collections are organized into folders which categorizes the various API calls according to category, so for example, for the Management API you will find all the Users methods under the Users folder.
The Auth0 Postman collections make use of environment variables to customize the requests being sent. More information on managing Postman environments can be found at Setting up an environment with variables
You will need to create an environment and configure the following variables:
auth0_domain
: Should contain the domain for your Auth0 tenant, e.g. jerrie.auth0.com.auth0_token
: Should contain the token needed when making calls to the Management API, and is therefore only required when using the Management API collection. More information on how to generate a token can be found at The Auth0 Management APIv2 Token
In the screenshot below you can see a Postman environment configured with both the auth0_domain
and auth0_token
variables defined:
Once the environment is configured, you can follow theses steps to execute an Auth0 API method:
- Select the environment you want to work with
- Select the relevant API method in the collection folder
- Click the send button
You man also optionally have to configure query parameters or the JSON method body, depending on the API call. For more information please refer to the Sending Requests document on the Postman website.
We do need to point out that storing tokens in Postman as environment variables could pose a potential security risk. If you are signed in to the Postman application it will automatically try and synchronize some entities such as Collections and Environments with the Postman servers. This means that a token, which could allow someone else to gain access to your Management API, is leaving the privacy of your computer and uploaded Postman's servers.
It also has to be said that Postman has taken measures to ensure that this information is encrypted, and indeed encourages users to store this sort of information in Environment Variables. You can read more about this on their website.
If you feel that this still poses too much of a risk for you, then you will need to sign out of Postman to ensure that environment variables are not synchronized.