Overview
Summary
Contact
Donate
Imprint
Prompt for the
ApiUsageLogView
Please create a React-JS view called "ApiUsageLogView" for the fields of the ApiUsageLog entity. The ApiUsageLogView must contain the following fields: - name: ApiClient type: ApiClient - name: BytesReceived type: LONG - name: BytesSent type: LONG - name: Endpoint type: STRING - name: RequestTimestampUtc type: DATE - name: ResponseStatusCode type: LONG The data source for the [ApiClient] select control should be loaded from the relative URL: "/ApiClientService/apiclient" (HTTP-GET) An existing ApiUsageLog entity should be loaded from the relative URL: "/ApiClientService/apiusagelog/{id}" (HTTP-GET) If a new ApiUsageLog entity has been created, the new entity should be posted to the relative URL: "/ApiClientService/apiusagelog" (HTTP-POST) If an existing ApiUsageLog entity has been updated, the modified entity should be sent to the relative URL: "/ApiClientService/apiusagelog/{id}" (HTTP-PUT) If an existing ApiUsageLog entity has to be deleted, the following relative URL should be called: "/ApiClientService/apiusagelog/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint