Overview
Summary
Contact
Donate
Imprint
Prompt for the
FraudCaseView
Please create a React-JS view called "FraudCaseView" for the fields of the FraudCase entity. The FraudCaseView must contain the following fields: - name: CaseType type: STRING - name: Description type: STRING - name: Listing type: Listing - name: PlatformUserReporter type: PlatformUser - name: ReportedAt type: DATE - name: ResolvedAt type: DATE - name: Status type: STRING The data source for the [Listing] select control should be loaded from the relative URL: "/ListingService/listing" (HTTP-GET) The data source for the [PlatformUserReporter] select control should be loaded from the relative URL: "/PlatformUserService/platformuser" (HTTP-GET) An existing FraudCase entity should be loaded from the relative URL: "/PlatformUserService/fraudcase/{id}" (HTTP-GET) If a new FraudCase entity has been created, the new entity should be posted to the relative URL: "/PlatformUserService/fraudcase" (HTTP-POST) If an existing FraudCase entity has been updated, the modified entity should be sent to the relative URL: "/PlatformUserService/fraudcase/{id}" (HTTP-PUT) If an existing FraudCase entity has to be deleted, the following relative URL should be called: "/PlatformUserService/fraudcase/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint