Authorization

Refresh personal access token

With this endpoint API, you can extend the Personal Access Token for one hour, with the option to extend it later. Note this endpoint accepts a Bearer authentication token in the headers.

post/oauth/personal-token/refresh

Response

OK

token_typestring text
expires_instring text
access_tokenstring text

Example response

{
  "token_type": "Bearer",
  "expires_in": "31536000",
  "access_token": "personal access token"
}

Changes

No recorded changes to this endpoint across all 2 revisions of this API.