Author: admin
TTWrite API: Like / Unlike Post
Endpoint URL //ttwrite.4up.eu/mobile_api/like_post Description This API allows the authenticated user to like or unlike a specific post on the TTWrite platform. Parameters Field Value Remarks post_id integer The unique identifier of the post to like or unlike. action string Specifies the action: either like or unlike. Example Usage httpCopy codePOSTRead More
TTWrite API: Change Display Language
Endpoint URL //ttwrite.4up.eu/mobile_api/language Description This API allows the logged-in user to change the display language of the application interface. Parameters Field Value Remarks language_code string The language code (e.g., en, es, fr) to set as the display language. Example Usage httpCopy codePOST //ttwrite.4up.eu/mobile_api/language Content-Type: application/json { “language_code”: “en” } Notes
TTWrite API: Get Started
This guide introduces developers to the TTWrite API, providing an overview of its functionalities and resources. It serves as the starting point for integrating TTWrite’s API endpoints. Key Highlights Notes
TTWrite API: Get Notifications / Mentions
Endpoint URL //ttwrite.4up.eu/mobile_api/get_notifications Description This API fetches notifications and mentions for the authenticated user, including updates about likes, comments, follows, and mentions. Parameters Field Value Remarks user_id integer The unique identifier of the user for whom notifications are being fetched. limit integer Optional. The number of results to return perRead 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
TTWrite API: Follow Requests
This suite of APIs provides functionalities to manage follow requests on the TTWrite platform, including fetching, approving, and deleting (ignoring) requests. 1. Fetch Follow Requests Endpoint URL //ttwrite.4up.eu/mobile_api/follow_requests Description Retrieves a list of follow requests sent to the authenticated user. Parameters Field Value Remarks user_id integer The unique identifier ofRead More
TTWrite API: Follow & Unfollow User
Endpoint URL //ttwrite.4up.eu/mobile_api/follow Description This API allows users to follow or unfollow another user on the TTWrite platform. Parameters Field Value Remarks user_id integer The unique identifier of the user to be followed or unfollowed. action string Either follow or unfollow. Specifies the action to perform. Example Usage httpCopy codePOSTRead More
TTWrite API: Fetch Post Likes
Endpoint URL //ttwrite.4up.eu/mobile_api/fetch_likes Description This API retrieves the list of users who have liked a specific post on the TTWrite platform. The current version does not support fetching reposts for a post. Parameters Field Value Remarks post_id integer The unique identifier of the post whose likes are being fetched. limitRead More
TTWrite API: Fetch Following Users
Endpoint URL //ttwrite.4up.eu/mobile_api/fetch_following Description This API retrieves the list of users that the authenticated user is following on the TTWrite platform. Parameters Field Value Remarks user_id integer The unique identifier of the user whose following list is being fetched. limit integer Optional. The number of results to return per request.Read More
TTWrite API: Fetch Following Endpoint
The fetch_following endpoint allows you to retrieve the list of accounts that a specific user is following. This endpoint supports pagination for managing large lists of followed accounts. Endpoint URL //ttwrite.4up.eu/mobile_api/fetch_following Overview Use this API to get the list of users that a specific user is following. You can provideRead More