Note: This thread references the Learning Postman with Paul course, which has been deprecated and is no longer available in the Learning Center.
I followed Postman with Paul's directions to create my first API. I created environment variables to replace the collection variables.
I can successfully request a new access token and it updates the environment variables correctly.
However, when I run Get WhoAmI, I receive this error:
{
"type": "http://docs.valence.desire2learn.com/res/apiprop.html#invalid-token",
"title": "Unauthorized",
"status": 401,
"detail": "The access token is for another tenant"
}
I've tried both "Bearer Token" and "Inherit auth from parent" for Get WhoAmI's authorization type. WhoAmI's authorization is "Bearer Token" with the Token pointing to {{accesstoken}}. {{accesstoken}} is matching the token received from "Request a New Access Token and Refresh Token".
Any ideas or additional information I can provide to help troubleshoot this issue?