User Regenerate Personal Access Token
URL | Requires Auth | HTTP Method |
---|---|---|
/api/v1/users.regeneratePersonalAccessToken |
yes |
POST |
Payload
Argument | Example | Required | Description |
---|---|---|---|
tokenName |
mypersonaltoken |
Required | The name of the token. |
Example Call
curl -H "X-Auth-Token: 9HqLlyZOugoStsXCUfD_0YdwnNnunAJF8V47U3QHXSq" \
-H "X-User-Id: aobEdbYhXfu5hkeqG" \
-H "Content-type:application/json" \
http://localhost:3000/api/v1/users.regeneratePersonalAccessToken \
-d '{ "tokenName": "mypersonaltoken" }'
Example Result
{
"token": "sSfSoNW8Pb7S8BHEz3uJXYRM3__ML9GxPY1PxGzqAcn",
"success": true
}
Change Log
Version | Description |
---|---|
0.69.0 | Added |