| Contact | Donate | Imprint |
| Wishlist | WishlistModule | AmazonCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Wishlist | ||
| (2) Customer | LONG | Wishlist | Customer | CustomerModule |
| (3) IsPublic | BOOL | Wishlist | ||
| (4) Name | STRING | Wishlist | ||
| (5) UpdatedAt | DATE | Wishlist |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /wishlist | findAllWishlist() | WishlistModule | GET | Wishlist |
| (2) /wishlist/{id} | updateWishlistById(wishlist) | WishlistModule | PUT | Wishlist |
| (3) /wishlist/{id} | deleteWishlistById(id) | WishlistModule | DELETE | Wishlist |
| (4) /wishlistitem/wishlist/{id} | findAllWishlistItemOfWishlist(id) | WishlistModule | GET | Wishlist WishlistItem |
| (5) /wishlist/{id} | findWishlistById(id) | WishlistModule | GET | Wishlist |
| (6) /wishlist/customer/{id} | findAllWishlistOfCustomer(id) | WishlistModule | GET | Customer Wishlist |
| (7) /wishlist | insertWishlist(wishlist) | WishlistModule | POST | Wishlist |
Example:
final Wishlist wishlist = (Wishlist) invokeModule(WISHLIST_MODULE + "/wishlist/" + id, Wishlist.class);| Contact | Donate | Imprint |