Contents

KeywordUpdateBulkResponse

The response from a bulk Keyword update request, containing results for each item.

Declaration

object KeywordUpdateBulkResponse

Properties

NameTypeDescription
result[BulkItemResultKeyword]

Array of per-item keyword update results, one entry per item in the original request. Each entry includes correlationId, operation, success, and on success the full updated Keyword entity. See BulkItemResultKeyword. Read-only.

errorError

See Error. Read-only.

Discussion

The bulk keyword update endpoint returns KeywordUpdateBulkResponse as its response envelope. The response populates error only when the system rejects the overall request before processing any items.

Example

{
  "result": [
    {
      "correlationId": 0,
      "operation": "UPDATE",
      "success": true,
      "result": {
        "id": 888999000,
        "adAccountId": 123456789,
        "campaignId": 444555666,
        "adGroupId": 555666777,
        "text": "photo editor",
        "matchType": "EXACT",
        "bid": {
          "amount": "3.00",
          "currency": "USD"
        },
        "status": "ENABLED",
        "displayStatus": "RUNNING",
        "deleted": false,
        "creationTime": "2025-06-01T10:00:00.000",
        "modificationTime": "2025-06-15T09:00:00.000"
      }
    },
    {
      "correlationId": 1,
      "operation": "UPDATE",
      "success": false,
      "result": null,
      "error": {
        "code": "INVALID_BID",
        "message": "Bid amount is below the minimum allowed value.",
        "details": []
      }
    }
  ]
}

See Also