Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserKycVerificationView
Please create a React-JS view called "UserKycVerificationView" for the fields of the UserKycVerification entity. The UserKycVerificationView must contain the following fields: - name: CompletedAt type: DATE - name: Notes type: STRING - name: RequestedAt type: DATE - name: Reviewer type: STRING - name: Status type: STRING - name: UserAccount type: UserAccount - name: UserDocument type: UserDocument - name: VerificationType type: STRING The data source for the [UserDocument] select control should be loaded from the relative URL: "/UserDocumentService/userdocument" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing UserKycVerification entity should be loaded from the relative URL: "/UserDocumentService/userkycverification/{id}" (HTTP-GET) If a new UserKycVerification entity has been created, the new entity should be posted to the relative URL: "/UserDocumentService/userkycverification" (HTTP-POST) If an existing UserKycVerification entity has been updated, the modified entity should be sent to the relative URL: "/UserDocumentService/userkycverification/{id}" (HTTP-PUT) If an existing UserKycVerification entity has to be deleted, the following relative URL should be called: "/UserDocumentService/userkycverification/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint