| Contact | Donate | Imprint |
| PostTag | SavedCollectionModule |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | PostTag | ||
| (2) PositionX | STRING | PostTag | ||
| (3) PositionY | STRING | PostTag | ||
| (4) Post | LONG | PostTag | Post | UserAccountModule |
| (5) TaggedUser | LONG | PostTag | UserAccount | UserAccountModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /posttag/{id} | updatePostTagById(posttag) | SavedCollectionModule | PUT | PostTag |
| (2) /posttag/taggeduser/{id} | findAllPostTagOfTaggedUser(id) | SavedCollectionModule | GET | UserAccount PostTag |
| (3) /posttag | findAllPostTag() | SavedCollectionModule | GET | PostTag |
| (4) /posttag/{id} | deletePostTagById(id) | SavedCollectionModule | DELETE | PostTag |
| (5) /posttag | insertPostTag(posttag) | SavedCollectionModule | POST | PostTag |
| (6) /posttag/{id} | findPostTagById(id) | SavedCollectionModule | GET | PostTag |
| (7) /posttag/post/{id} | findAllPostTagOfPost(id) | SavedCollectionModule | GET | Post PostTag |
Example:
final PostTag posttag = (PostTag) invokeModule(SAVED_COLLECTION_MODULE + "/posttag/" + id, PostTag.class);| Contact | Donate | Imprint |