v1

latestOpenAPI 3.1.02026-07-242470655.6 KB

Create New Access Token

Create a new access token with an existing refresh token, from an App Install

post/{app_uuid}/token/refresh

Path parameters

app_uuidstring required

UUID of the App

Headers

authorizationstring

Your App Account's username and password, base64'd.

Request body

refreshTokenstring

A refresh token you received when the App was installed.

Response

200

authorization_codestring
expiration_dateinteger
refresh_tokenstring
typestring

Example response

{
  "authorization_code": "string",
  "refresh_token": "string",
  "type": "string"
}