Using the Refresh Token

Send your refresh token to get a new access token and a new refresh token

POST https://api.formdr.com/api/oauth/token

Headers

NameTypeDescription

Content-Type*

String

application/x-www-form-urlencoded

Request Body

NameTypeDescription

grant_type*

String

"refresh_token"

refresh_token*

String

The Refresh Token

client_id*

String

Your Client ID

client_secret*

String

Your Client Secret

{
    "accessToken": String,
    "accessTokenExpiresAt": DateString,
    "refreshToken": String,
    "refreshTokenExpiresAt": DateString,
    "scope": String
}

Last updated