AI-generated Key Takeaways
-
A new dynamic feed can be inserted using a POST request to the specified URL.
-
The request body for inserting a dynamic feed requires an instance of DynamicFeedsInsertRequest.
-
A successful response to inserting a dynamic feed will contain a newly created instance of DynamicFeed.
-
The process requires the
https://www.googleapis.com/auth/dfatraffickingOAuth scope for authorization. -
The DynamicFeedsInsertRequest includes the required fields
dynamicProfileIdanddynamicFeed.
Inserts a new dynamic feed.
HTTP request
POST https://dfareporting.googleapis.com/dfareporting/v4/studio/dynamicFeeds
The URL uses gRPC Transcoding syntax.
Request body
The request body contains an instance of DynamicFeedsInsertRequest
.
Response body
If successful, the response body contains a newly created instance of DynamicFeed
.
Authorization scopes
Requires the following OAuth scope:
-
https://www.googleapis.com/auth/dfatrafficking
DynamicFeedsInsertRequest
Dynamic profile ID is required for dynamic feed insert as the current GPA API only can create a dynamic feed under profile context,even though the dynnamic feed itself don't need the dynamic profile id. See
| JSON representation |
|---|
{
"dynamicProfileId"
:
string
,
"dynamicFeed"
:
{
object (
|
| Fields | |
|---|---|
dynamicProfileId
|
Required. Dynamic profile ID of the inserted dynamic feed. |
dynamicFeed
|
Required. Dynamic feed to insert. |

