Overview
Summary
Contact
Donate
Imprint
Prompt for the
FundingSourceView
Please create a React-JS view called "FundingSourceView" for the fields of the FundingSource entity. The FundingSourceView must contain the following fields: - name: CreatedAt type: DATE - name: LastUsedAt type: DATE - name: Status type: STRING - name: Type type: STRING - name: UserAccount type: UserAccount The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing FundingSource entity should be loaded from the relative URL: "/FundingSourceService/fundingsource/{id}" (HTTP-GET) If a new FundingSource entity has been created, the new entity should be posted to the relative URL: "/FundingSourceService/fundingsource" (HTTP-POST) If an existing FundingSource entity has been updated, the modified entity should be sent to the relative URL: "/FundingSourceService/fundingsource/{id}" (HTTP-PUT) If an existing FundingSource entity has to be deleted, the following relative URL should be called: "/FundingSourceService/fundingsource/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Transaction columns: - column: CompletedAt - column: SenderUserAccount - column: ReceiverUserAccount - column: CreatedAt - column: Merchant - column: Status - column: Type - column: NetAmount - column: FundingSource - column: Amount - column: FeeAmount - column: ExternalReference - column: Currency The table should have the title "Transactions" und the data must be loaded from the server with the following relative URL: "/TransactionService/transaction/fundingsource/{id}" Add a HTML table to the view with the following PaymentCard columns: - column: VerifiedAt - column: ExpiryMonth - column: CardNetwork - column: FundingSource - column: Country - column: ExpiryYear - column: CardholderName - column: Last4 The table should have the title "PaymentCards" und the data must be loaded from the server with the following relative URL: "/FundingSourceService/paymentcard/fundingsource/{id}" Add a HTML table to the view with the following BankAccount columns: - column: FundingSource - column: BankName - column: AccountNumberMasked - column: Bic - column: Country - column: VerifiedAt - column: Iban The table should have the title "BankAccounts" und the data must be loaded from the server with the following relative URL: "/CountryService/bankaccount/fundingsource/{id}" Add a HTML table to the view with the following PaymentMethod columns: - column: Priority - column: MethodType - column: FundingSource - column: IsDefault - column: UserAccount - column: Label The table should have the title "PaymentMethods" und the data must be loaded from the server with the following relative URL: "/SubscriptionService/paymentmethod/fundingsource/{id}" Add a HTML table to the view with the following Payout columns: - column: Status - column: TotalAmount - column: CompletedAt - column: UserAccount - column: CreatedAt - column: Currency - column: FundingSource The table should have the title "Payouts" und the data must be loaded from the server with the following relative URL: "/UserAccountService/payout/fundingsource/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint