| Contact | Donate | Imprint |
| Chargeback | UserDeviceModule | PayPal |
| Property | Type | Entity | Reference | Module |
| (1) Amount | DOUBLE | Chargeback | ||
| (2) ClosedAt | DATE | Chargeback | ||
| (3) Currency | LONG | Chargeback | Currency | CurrencyModule |
| (4) OpenedAt | DATE | Chargeback | ||
| (5) ReasonCode | STRING | Chargeback | ||
| (6) Status | STRING | Chargeback | ||
| (7) Transaction | LONG | Chargeback | Transaction | TransactionModule |
| (8) UserAccount | LONG | Chargeback | UserAccount | UserAccountModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /chargeback/{id} | deleteChargebackById(id) | UserDeviceModule | DELETE | Chargeback |
| (2) /chargeback/{id} | findChargebackById(id) | UserDeviceModule | GET | Chargeback |
| (3) /chargeback/{id} | updateChargebackById(chargeback) | UserDeviceModule | PUT | Chargeback |
| (4) /chargeback/useraccount/{id} | findAllChargebackOfUserAccount(id) | UserDeviceModule | GET | UserAccount Chargeback |
| (5) /chargeback/currency/{id} | findAllChargebackOfCurrency(id) | UserDeviceModule | GET | Currency Chargeback |
| (6) /chargeback | insertChargeback(chargeback) | UserDeviceModule | POST | Chargeback |
| (7) /chargeback/transaction/{id} | findAllChargebackOfTransaction(id) | UserDeviceModule | GET | Transaction Chargeback |
| (8) /chargeback | findAllChargeback() | UserDeviceModule | GET | Chargeback |
Example:
final Chargeback chargeback = (Chargeback) invokeModule(USER_DEVICE_MODULE + "/chargeback/" + id, Chargeback.class);| Contact | Donate | Imprint |