| Contact | Donate | Imprint |
| Merchant | AppModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | Merchant | Company | CompanyModule |
| (2) Country | STRING | Merchant | ||
| (3) Industry | STRING | Merchant | ||
| (4) IsActive | BOOL | Merchant | ||
| (5) IsShopifyPlus | BOOL | Merchant | ||
| (6) MerchantSize | STRING | Merchant | ||
| (7) OnboardingDate | DATE | Merchant |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /merchant/company/{id} | findAllMerchantOfCompany(id) | AppModule | GET | Company Merchant |
| (2) /merchant | findAllMerchant() | AppModule | GET | Merchant |
| (3) /merchant/{id} | deleteMerchantById(id) | AppModule | DELETE | Merchant |
| (4) /merchant/{id} | updateMerchantById(merchant) | AppModule | PUT | Merchant |
| (5) /merchantappinstallation/merchant/{id} | findAllMerchantAppInstallationOfMerchant(id) | AppModule | GET | Merchant MerchantAppInstallation |
| (6) /merchant | insertMerchant(merchant) | AppModule | POST | Merchant |
| (7) /merchant/{id} | findMerchantById(id) | AppModule | GET | Merchant |
Example:
final Merchant merchant = (Merchant) invokeModule(APP_MODULE + "/merchant/" + id, Merchant.class);| Contact | Donate | Imprint |