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