How to retrieve a token via Postman to access the Wemap content API?
The Wemap platform provides you with a REST API to create or update your content and/or maps. Access requires authentication via a Bearer token and an Authorization Header.
Here are the steps to retrieve your token if you are using Postman:
- Retrieve or create the connection information on your Wemap Pro account in the developer settings of your profile.
- Go to https://www.postman.com/ to retrieve a token (authentication token).
- Create a new POST request and enter this URL:
https://api.getwemap.com/v3.0/oauth2/token
In the "Authorization" section:
- Choose a "Basic" type.
- Fill in the "username" (= client_id) and "password" (= client_secret) fields with the connection information retrieved from your Wemap Pro account.
In the "Body" section:
- Select "/x-www-form-urlencoded" and fill in the following fields:
- "key": grant_type / "value": client_credentials
- "key": client_id / "value": available on your Wemap Pro account
- Send the request and obtain the "access_token".

You can now use the token for your requests to the Wemap content API.
- Create a new GET request and enter this URL.
In the "Headers" section:
- Fill in the following fields:
- "key": Authorization / "value": "Bearer" and the token separated by a space
- Execute the request.