Overview
Summary
Contact
Donate
Imprint
Prompt for the
AdAccountView
Please create a React-JS view called "AdAccountView" for the fields of the AdAccount entity. The AdAccountView must contain the following fields: - name: CreatedAt type: STRING - name: Currency type: STRING - name: Name type: STRING - name: OwnerUser type: UserAccount - name: Timezone type: STRING The data source for the [OwnerUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing AdAccount entity should be loaded from the relative URL: "/CampaignService/adaccount/{id}" (HTTP-GET) If a new AdAccount entity has been created, the new entity should be posted to the relative URL: "/CampaignService/adaccount" (HTTP-POST) If an existing AdAccount entity has been updated, the modified entity should be sent to the relative URL: "/CampaignService/adaccount/{id}" (HTTP-PUT) If an existing AdAccount entity has to be deleted, the following relative URL should be called: "/CampaignService/adaccount/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Campaign columns: - column: TotalBudget - column: AdAccount - column: EndDate - column: StartDate - column: Status - column: DailyBudget - column: Objective - column: Name The table should have the title "Campaigns" und the data must be loaded from the server with the following relative URL: "/CampaignService/campaign/adaccount/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint