Overview
Summary
Contact
Donate
Imprint
Prompt for the
ContactView
Please create a React-JS view called "ContactView" for the fields of the Contact entity. The ContactView must contain the following fields: - name: CreatedAt type: DATE - name: DisplayName type: STRING - name: E164Number type: STRING - name: IsInAddressBook type: BOOL - name: IsMarkedAsSpam type: BOOL - name: OwnerUserAccount type: LONG - name: RemoteUserAccount type: LONG - name: UpdatedAt type: DATE An existing Contact entity should be loaded from the relative URL: "/SafetyNumberService/contact/{id}" (HTTP-GET) If a new Contact entity has been created, the new entity should be posted to the relative URL: "/SafetyNumberService/contact" (HTTP-POST) If an existing Contact entity has been updated, the modified entity should be sent to the relative URL: "/SafetyNumberService/contact/{id}" (HTTP-PUT) If an existing Contact entity has to be deleted, the following relative URL should be called: "/SafetyNumberService/contact/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint