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:


  1. Retrieve or create the connection information on your Wemap Pro account in the developer settings of your profile.

  1. Go to https://www.postman.com/ to retrieve a token (authentication token).

  1. Create a new POST request and enter this URL:
https://api.getwemap.com/v3.0/oauth2/token

In the "Authorization" section:

  1. Choose a "Basic" type.

  1. 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:

  1. 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

  1. Send the request and obtain the "access_token".

Capture_d_e_cran_2021-09-07_a__10.36.47.png

You can now use the token for your requests to the Wemap content API.


  1. Create a new GET request and enter this URL.

In the "Headers" section:

  1. Fill in the following fields:
    • "key": Authorization / "value": "Bearer" and the token separated by a space

  1. Execute the request.
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.