Overview

Summary

ContactDonateImprint


Appendix E-6: API APP (UI prompt)


ApiAppUserAccountModuleTwitterX

Properties (6)

PropertyTypeEntityReferenceModule
(1) ApiKeySTRINGApiApp
(2) CallbackUrlSTRINGApiApp
(3) CreatedAtSTRINGApiApp
(4) NameSTRINGApiApp
(5) OwnerUserLONGApiAppUserAccountUserAccountModule
(6) WebsiteUrlSTRINGApiApp


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /apiaccesstoken/apiapp/{id}findAllApiAccessTokenOfApiApp(id)TrendLocationModuleGETApiApp ApiAccessToken
(2) /apiapp/{id}updateApiAppById(apiapp)UserAccountModulePUTApiApp
(3) /apiappinsertApiApp(apiapp)UserAccountModulePOSTApiApp
(4) /apiapp/owneruser/{id}findAllApiAppOfOwnerUser(id)UserAccountModuleGETUserAccount ApiApp
(5) /apiappfindAllApiApp()UserAccountModuleGETApiApp
(6) /apiapp/{id}deleteApiAppById(id)UserAccountModuleDELETEApiApp
(7) /apiapp/{id}findApiAppById(id)UserAccountModuleGETApiApp





Example:

final ApiApp apiapp = (ApiApp) invokeModule(USER_ACCOUNT_MODULE + "/apiapp/" + id, ApiApp.class);
if (apiapp != null) {
    final UserAccount owneruser1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + apiapp.getOwnerUser().getId(), UserAccount.class);
    if (owneruser1 != null) {
    }
}
return apiapp;


Overview

Summary

ContactDonateImprint