Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserAccountView
Please create a React-JS view called "UserAccountView" for the fields of the UserAccount entity. The UserAccountView must contain the following fields: - name: Country type: STRING - name: Email type: STRING - name: IsBusiness type: BOOL - name: RegistrationDate type: DATE - name: Status type: STRING - name: Username type: STRING An existing UserAccount entity should be loaded from the relative URL: "/UserAccountService/useraccount/{id}" (HTTP-GET) If a new UserAccount entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/useraccount" (HTTP-POST) If an existing UserAccount entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/useraccount/{id}" (HTTP-PUT) If an existing UserAccount entity has to be deleted, the following relative URL should be called: "/UserAccountService/useraccount/{id}" (HTTP-DELETE) Add a HTML table to the view with the following FraudCase columns: - column: CloseDate - column: Description - column: Dispute - column: Outcome - column: RelatedUserAccount - column: OpenDate - column: CaseType The table should have the title "FraudCases" und the data must be loaded from the server with the following relative URL: "/DisputeService/fraudcase/relateduseraccount/{id}" Add a HTML table to the view with the following FixedPriceOffer columns: - column: BuyerUserAccount - column: OfferDate - column: Currency - column: Listing - column: Status - column: OfferedPrice The table should have the title "FixedPriceOffers" und the data must be loaded from the server with the following relative URL: "/ListingService/fixedpriceoffer/buyeruseraccount/{id}" Add a HTML table to the view with the following OrderItem columns: - column: Quantity - column: Currency - column: SellerUserAccount - column: FulfillmentStatus - column: UnitPrice - column: Listing - column: OrderEntity The table should have the title "OrderItems" und the data must be loaded from the server with the following relative URL: "/UserAccountService/orderitem/selleruseraccount/{id}" Add a HTML table to the view with the following Dispute columns: - column: DisputeType - column: OpenedByUserAccount - column: CloseDate - column: Resolution - column: OpenDate - column: OrderItem - column: Description - column: Status The table should have the title "Disputes" und the data must be loaded from the server with the following relative URL: "/DisputeService/dispute/openedbyuseraccount/{id}" Add a HTML table to the view with the following Bid columns: - column: BidAmount - column: Auction - column: Currency - column: BidTime - column: IsWinning - column: BidderUserAccount The table should have the title "Bids" und the data must be loaded from the server with the following relative URL: "/AuctionService/bid/bidderuseraccount/{id}" Add a HTML table to the view with the following Feedback columns: - column: ToUserAccount - column: Comment - column: FeedbackDate - column: Rating - column: FromUserAccount - column: OrderItem The table should have the title "Feedbacks" und the data must be loaded from the server with the following relative URL: "/UserAccountService/feedback/fromuseraccount/{id}" Add a HTML table to the view with the following Feedback columns: - column: ToUserAccount - column: Comment - column: FeedbackDate - column: Rating - column: FromUserAccount - column: OrderItem The table should have the title "Feedbacks" und the data must be loaded from the server with the following relative URL: "/UserAccountService/feedback/touseraccount/{id}" Add a HTML table to the view with the following DeveloperApplication columns: - column: Status - column: Name - column: ApiKey - column: OwnerUserAccount - column: CreatedDate The table should have the title "DeveloperApplications" und the data must be loaded from the server with the following relative URL: "/UserRoleService/developerapplication/owneruseraccount/{id}" Add a HTML table to the view with the following UserAccountRole columns: - column: UserAccount - column: AssignedDate - column: UserRole The table should have the title "UserAccountRoles" und the data must be loaded from the server with the following relative URL: "/UserRoleService/useraccountrole/useraccount/{id}" Add a HTML table to the view with the following Listing columns: - column: BuyNowPrice - column: ListingType - column: StartPrice - column: SellerUserAccount - column: LocationCountry - column: Category - column: QuantityAvailable - column: Currency - column: StartDate - column: EndDate - column: Status - column: Title - column: Description - column: LocationRegion The table should have the title "Listings" und the data must be loaded from the server with the following relative URL: "/ListingService/listing/selleruseraccount/{id}" Add a HTML table to the view with the following OrderEntity columns: - column: OrderDate - column: BuyerUserAccount - column: Currency - column: TotalAmount - column: SourceChannel - column: Status The table should have the title "OrderEntitys" und the data must be loaded from the server with the following relative URL: "/UserAccountService/orderentity/buyeruseraccount/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint