Overview
Summary
Contact
Donate
Imprint
Prompt for the
BrowseEventView
Please create a React-JS view called "BrowseEventView" for the fields of the BrowseEvent entity. The BrowseEventView must contain the following fields: - name: Customer type: Customer - name: EventType type: STRING - name: IpAddress type: STRING - name: OccurredAt type: DATE - name: Offer type: Offer - name: Product type: Product - name: SessionId type: STRING - name: UserAgent type: STRING The data source for the [Customer] select control should be loaded from the relative URL: "/CustomerService/customer" (HTTP-GET) The data source for the [Offer] select control should be loaded from the relative URL: "/OfferService/offer" (HTTP-GET) The data source for the [Product] select control should be loaded from the relative URL: "/ProductService/product" (HTTP-GET) An existing BrowseEvent entity should be loaded from the relative URL: "/ProductService/browseevent/{id}" (HTTP-GET) If a new BrowseEvent entity has been created, the new entity should be posted to the relative URL: "/ProductService/browseevent" (HTTP-POST) If an existing BrowseEvent entity has been updated, the modified entity should be sent to the relative URL: "/ProductService/browseevent/{id}" (HTTP-PUT) If an existing BrowseEvent entity has to be deleted, the following relative URL should be called: "/ProductService/browseevent/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint