| Contact | Donate | Imprint |
| Follow | DirectMessageConversationModule | TwitterX |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | STRING | Follow | ||
| (2) FollowedUser | LONG | Follow | UserAccount | UserAccountModule |
| (3) FollowerUser | LONG | Follow | UserAccount | UserAccountModule |
| (4) IsBlocked | BOOL | Follow | ||
| (5) IsMuted | BOOL | Follow | ||
| (6) IsNotificationsEnabled | BOOL | Follow |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /follow | insertFollow(follow) | DirectMessageConversationModule | POST | Follow |
| (2) /follow/{id} | deleteFollowById(id) | DirectMessageConversationModule | DELETE | Follow |
| (3) /follow/{id} | findFollowById(id) | DirectMessageConversationModule | GET | Follow |
| (4) /follow/{id} | updateFollowById(follow) | DirectMessageConversationModule | PUT | Follow |
| (5) /follow/followeruser/{id} | findAllFollowOfFollowerUser(id) | DirectMessageConversationModule | GET | UserAccount Follow |
| (6) /follow/followeduser/{id} | findAllFollowOfFollowedUser(id) | DirectMessageConversationModule | GET | UserAccount Follow |
| (7) /follow | findAllFollow() | DirectMessageConversationModule | GET | Follow |
Example:
final Follow follow = (Follow) invokeModule(DIRECT_MESSAGE_CONVERSATION_MODULE + "/follow/" + id, Follow.class);| Contact | Donate | Imprint |