TTWrite API: Refresh Access Token

Endpoint URL

//ttwrite.4up.eu/mobile_api/refresh_access_token

Description

This API allows users to refresh their access token, ensuring continued access to the platform without requiring a re-login.

Parameters

FieldValueRemarks
refresh_tokenstringThe refresh token issued during the initial authentication process.

Example Usage

httpCopy codePOST //ttwrite.4up.eu/mobile_api/refresh_access_token
Content-Type: application/json

{
  "refresh_token": "eyJhbGc...dXNzIn"
}

Notes

  • Authentication is required to access this API.
  • The refresh_token must be valid and unexpired.
  • A new access token is issued upon a successful request, which should replace the old token for subsequent API calls.