| Contact | Donate | Imprint |
| PostHashtag | HashtagModule |
| Property | Type | Entity | Reference | Module |
| (1) Hashtag | LONG | PostHashtag | Hashtag | HashtagModule |
| (2) Post | LONG | PostHashtag | Post | UserAccountModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /posthashtag/{id} | deletePostHashtagById(id) | HashtagModule | DELETE | PostHashtag |
| (2) /posthashtag | insertPostHashtag(posthashtag) | HashtagModule | POST | PostHashtag |
| (3) /posthashtag/{id} | findPostHashtagById(id) | HashtagModule | GET | PostHashtag |
| (4) /posthashtag | findAllPostHashtag() | HashtagModule | GET | PostHashtag |
| (5) /posthashtag/post/{id} | findAllPostHashtagOfPost(id) | HashtagModule | GET | Post PostHashtag |
| (6) /posthashtag/hashtag/{id} | findAllPostHashtagOfHashtag(id) | HashtagModule | GET | Hashtag PostHashtag |
| (7) /posthashtag/{id} | updatePostHashtagById(posthashtag) | HashtagModule | PUT | PostHashtag |
Example:
final PostHashtag posthashtag = (PostHashtag) invokeModule(HASHTAG_MODULE + "/posthashtag/" + id, PostHashtag.class);| Contact | Donate | Imprint |