Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserIdentityDocumentView
Please create a React-JS view called "UserIdentityDocumentView" for the fields of the UserIdentityDocument entity. The UserIdentityDocumentView must contain the following fields: - name: CreatedAt type: DATE - name: DocumentNumber type: STRING - name: DocumentType type: STRING - name: ExpiryDate type: DATE - name: IssuingCountry type: LONG - name: PlatformUser type: PlatformUser - name: VerificationStatus type: STRING The data source for the [PlatformUser] select control should be loaded from the relative URL: "/PlatformUserService/platformuser" (HTTP-GET) An existing UserIdentityDocument entity should be loaded from the relative URL: "/MessageThreadService/useridentitydocument/{id}" (HTTP-GET) If a new UserIdentityDocument entity has been created, the new entity should be posted to the relative URL: "/MessageThreadService/useridentitydocument" (HTTP-POST) If an existing UserIdentityDocument entity has been updated, the modified entity should be sent to the relative URL: "/MessageThreadService/useridentitydocument/{id}" (HTTP-PUT) If an existing UserIdentityDocument entity has to be deleted, the following relative URL should be called: "/MessageThreadService/useridentitydocument/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint