Overview
Summary
Contact
Donate
Imprint
Prompt for the
ComplianceCheckView
Please create a React-JS view called "ComplianceCheckView" for the fields of the ComplianceCheck entity. The ComplianceCheckView must contain the following fields: - name: CheckType type: STRING - name: Details type: STRING - name: PerformedAt type: DATE - name: Result type: STRING - name: SanctionListEntry type: SanctionListEntry - name: Status type: STRING - name: Transaction type: Transaction - name: UserAccount type: UserAccount The data source for the [Transaction] select control should be loaded from the relative URL: "/TransactionService/transaction" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [SanctionListEntry] select control should be loaded from the relative URL: "/CountryService/sanctionlistentry" (HTTP-GET) An existing ComplianceCheck entity should be loaded from the relative URL: "/UserAccountService/compliancecheck/{id}" (HTTP-GET) If a new ComplianceCheck entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/compliancecheck" (HTTP-POST) If an existing ComplianceCheck entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/compliancecheck/{id}" (HTTP-PUT) If an existing ComplianceCheck entity has to be deleted, the following relative URL should be called: "/UserAccountService/compliancecheck/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint