Overview
Summary
Contact
Donate
Imprint
Prompt for the
PromotedTweetView
Please create a React-JS view called "PromotedTweetView" for the fields of the PromotedTweet entity. The PromotedTweetView must contain the following fields: - name: Campaign type: Campaign - name: CreatedAt type: STRING - name: LineItemName type: STRING - name: Status type: STRING - name: Tweet type: Tweet The data source for the [Campaign] select control should be loaded from the relative URL: "/CampaignService/campaign" (HTTP-GET) The data source for the [Tweet] select control should be loaded from the relative URL: "/TweetService/tweet" (HTTP-GET) An existing PromotedTweet entity should be loaded from the relative URL: "/TweetService/promotedtweet/{id}" (HTTP-GET) If a new PromotedTweet entity has been created, the new entity should be posted to the relative URL: "/TweetService/promotedtweet" (HTTP-POST) If an existing PromotedTweet entity has been updated, the modified entity should be sent to the relative URL: "/TweetService/promotedtweet/{id}" (HTTP-PUT) If an existing PromotedTweet entity has to be deleted, the following relative URL should be called: "/TweetService/promotedtweet/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint