Contents

KeywordCreateBulkRequestItem

A single item in a keyword bulk-create request.

Declaration

object KeywordCreateBulkRequestItem

Properties

NameTypeDescription
correlationIdint64

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

dataBulkKeywordCreate

The keyword fields to create. See BulkKeywordCreate.

Discussion

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

Example

{
  "correlationId": 1,
  "data": {
    "adGroupId": 555666777,
    "text": "awayfinder",
    "matchType": "EXACT",
    "bid": {
      "amount": "2.50",
      "currency": "USD"
    },
    "status": "ENABLED"
  }
}

See Also