Contents

BulkItemResultKeyword

A bulk operation result item that includes the affected Keyword entity.

Declaration

object BulkItemResultKeyword

Properties

NameTypeDescription
correlationIdint64

Client-supplied integer from the corresponding request item. Read-only.

operationstring

The operation performed: CREATE or UPDATE. Read-only.

successboolean

Whether this item operation succeeded. Read-only.

resultKeyword

The Keyword entity affected by this operation. Null when success is false. See Keyword. Read-only.

errorError

Per-item error details when this item failed. Null on success. See Error. Read-only.

Discussion

The BulkItemResultKeyword object extends BulkItemResult with a typed result field containing the Keyword object the operation created or updated. This type appears as array items in KeywordCreateBulkResponse and KeywordUpdateBulkResponse.

On success, result contains the full Keyword entity as it exists after the operation. On failure, success is false and error carries per-item details.

Example

{
  "correlationId": 0,
  "operation": "CREATE",
  "success": true,
  "result": {
    "id": 888999000,
    "adAccountId": 123456789,
    "campaignId": 444555666,
    "adGroupId": 555666777,
    "text": "photo editor",
    "matchType": "EXACT",
    "bid": {
      "amount": "2.50",
      "currency": "USD"
    },
    "status": "ENABLED",
    "deleted": false,
    "creationTime": "2025-06-01T10:00:00.000",
    "modificationTime": "2025-06-01T10:00:00.000"
  }
}

See Also