Overview
Summary
Contact
Donate
Imprint
Prompt for the
ApiAppView
Please create a React-JS view called "ApiAppView" for the fields of the ApiApp entity. The ApiAppView must contain the following fields: - name: ApiKey type: STRING - name: CallbackUrl type: STRING - name: CreatedAt type: STRING - name: Name type: STRING - name: OwnerUser type: UserAccount - name: WebsiteUrl type: STRING The data source for the [OwnerUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing ApiApp entity should be loaded from the relative URL: "/UserAccountService/apiapp/{id}" (HTTP-GET) If a new ApiApp entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/apiapp" (HTTP-POST) If an existing ApiApp entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/apiapp/{id}" (HTTP-PUT) If an existing ApiApp entity has to be deleted, the following relative URL should be called: "/UserAccountService/apiapp/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ApiAccessToken columns: - column: User - column: Token - column: ApiApp - column: Scope - column: CreatedAt - column: ExpiresAt The table should have the title "ApiAccessTokens" und the data must be loaded from the server with the following relative URL: "/TrendLocationService/apiaccesstoken/apiapp/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint