Method: advertisers.adAssets.bulkCreate

Creates multiple ad assets in a single request.

Returns the newly-created ad assets if successful.

Only supports the creation of assets of AdAssetType AD_ASSET_TYPE_YOUTUBE_VIDEO.

HTTP request

POST https://displayvideo.googleapis.com/v4/advertisers/{advertiserId}/adAssets:bulkCreate

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
advertiserId

string (int64 format)

Required. The ID of the advertiser these ad assets belong to.

Request body

The request body contains data with the following structure:

JSON representation
{
  "adAssets": [
    {
      object (AdAsset)
    }
  ]
}
Fields
adAssets[]

object (AdAsset)

Required. Ad assets to create.

Only supports assets of AdAssetType AD_ASSET_TYPE_YOUTUBE_VIDEO.

Response body

A response message for adAssets.bulkCreate.

If successful, the response body contains data with the following structure:

JSON representation
{
  "adAssets": [
    {
      object (AdAsset)
    }
  ]
}
Fields
adAssets[]

object (AdAsset)

The created ad assets.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/display-video

For more information, see the OAuth 2.0 Overview.