Overview
Summary
Contact
Donate
Imprint
Prompt for the
PlatformUserView
Please create a React-JS view called "PlatformUserView" for the fields of the PlatformUser entity. The PlatformUserView must contain the following fields: - name: CreatedAt type: STRING - name: Email type: STRING - name: ExternalUserKey type: STRING - name: PhoneNumber type: STRING - name: Status type: STRING - name: UserType type: STRING An existing PlatformUser entity should be loaded from the relative URL: "/PlatformUserService/platformuser/{id}" (HTTP-GET) If a new PlatformUser entity has been created, the new entity should be posted to the relative URL: "/PlatformUserService/platformuser" (HTTP-POST) If an existing PlatformUser entity has been updated, the modified entity should be sent to the relative URL: "/PlatformUserService/platformuser/{id}" (HTTP-PUT) If an existing PlatformUser entity has to be deleted, the following relative URL should be called: "/PlatformUserService/platformuser/{id}" (HTTP-DELETE) Add a HTML table to the view with the following RiderAccount columns: - column: DefaultPaymentMethod - column: Notes - column: PlatformUser - column: Rating The table should have the title "RiderAccounts" und the data must be loaded from the server with the following relative URL: "/PlatformUserService/rideraccount/platformuser/{id}" Add a HTML table to the view with the following PaymentMethod columns: - column: ExpiryMonth - column: Status - column: ExpiryYear - column: MethodType - column: BillingZip - column: Provider - column: MaskedAccountNumber - column: BillingCountry - column: PlatformUser The table should have the title "PaymentMethods" und the data must be loaded from the server with the following relative URL: "/PlatformUserService/paymentmethod/platformuser/{id}" Add a HTML table to the view with the following DriverAccount columns: - column: LicenseCountry - column: LicenseNumber - column: DeactivationDate - column: VehicleRegistrationCountry - column: PlatformUser - column: OnboardingDate - column: Rating - column: BackgroundCheckStatus The table should have the title "DriverAccounts" und the data must be loaded from the server with the following relative URL: "/VehicleService/driveraccount/platformuser/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint