At any point, you can replace your user API token using either of the following steps:
Method #1
1. Navigate back to the Team Settings > API Access page.
2. Use the circular arrow icon to generate a new API token for yourself or for anyone on your team.
Method #2
1. Perform a POST
to the endpoint https://api.getguru.com/api/v1/users/{EMAIL}/token
. For example, using curl
, you can replace your token with:
curl -u {EMAIL}:{TOKEN} "https://api.getguru.com/api/v1/users/{EMAIL}/token" -X POST
❗Important
Make sure you replace {EMAIL}
with your email address and {TOKEN}
with your API token. Your new token will be returned in the response.