Contents

NegativeKeywordCreateBulkRequestItem

A single item in a negative-keyword bulk-create request.

Declaration

object NegativeKeywordCreateBulkRequestItem

Properties

NameTypeDescription
correlationIdint64

Client-supplied identifier used to correlate this item with its result in the response.

dataBulkNegativeKeywordCreate

The negative keyword fields to create. See BulkNegativeKeywordCreate.

Discussion

The data object accepts only the fields defined on BulkNegativeKeywordCreate, keeping each item’s payload identical in shape to a single-item create request.

Example

{
  "correlationId": 123456789,
  "data": {
    "campaignId": 987654321,
    "adGroupId": 555666777,
    "text": "free AwayFinder",
    "matchType": "BROAD",
    "status": "ENABLED"
  }
}

See Also