Tag: TTWrite authentication API
TTWrite API: Verify User Account
Endpoint URL //ttwrite.4up.eu/mobile_api/verify_user Description This API allows users to verify their accounts by submitting the required details for verification. Parameters Field Value Remarks user_id integer The unique identifier of the user. verification_code string The code sent to the user’s email or phone for verification. additional_info string Optional. Additional information orRead More
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 Field Value Remarks refresh_token string The 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
TTWrite API: User Login
Endpoint URL //ttwrite.4up.eu/mobile_api/login Description This API allows a user to log in to the TTWrite platform by providing their credentials. Parameters Field Value Remarks username string The username of the user. password string The password for the user account. Example Usage httpCopy codePOST //ttwrite.4up.eu/mobile_api/login Content-Type: application/json { “username”: “johndoe”, “password”:Read More
TTWrite API: Update User General Data
Endpoint URL //ttwrite.4up.eu/mobile_api/gen_settings Description This API allows the logged-in user to update their general profile details, such as name, email, and other basic information. Parameters Field Value Remarks name string Optional. The name of the user. email string Optional. The email address of the user. bio string Optional. A briefRead More