Overview
Summary
Contact
Donate
Imprint
Prompt for the
BusinessProfileView
Please create a React-JS view called "BusinessProfileView" for the fields of the BusinessProfile entity. The BusinessProfileView must contain the following fields: - name: BusinessName type: STRING - name: Category type: STRING - name: CreatedAt type: DATE - name: IsVerified type: BOOL - name: SupportEmail type: STRING - name: SupportPhone type: STRING - name: UserAccount type: UserAccount - name: UsesCloudApi type: BOOL - name: WebsiteUrl type: STRING The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing BusinessProfile entity should be loaded from the relative URL: "/RegulatoryRegionService/businessprofile/{id}" (HTTP-GET) If a new BusinessProfile entity has been created, the new entity should be posted to the relative URL: "/RegulatoryRegionService/businessprofile" (HTTP-POST) If an existing BusinessProfile entity has been updated, the modified entity should be sent to the relative URL: "/RegulatoryRegionService/businessprofile/{id}" (HTTP-PUT) If an existing BusinessProfile entity has to be deleted, the following relative URL should be called: "/RegulatoryRegionService/businessprofile/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint