Contents

KeywordCreateBulkResponse

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

Declaration

object KeywordCreateBulkResponse

Properties

NameTypeDescription
result[BulkItemResultKeyword]

Array of per-item keyword creation results, one entry per item in the original request. Each entry includes correlationId, operation, success, and on success the created Keyword entity. Use correlationId to match each entry back to its corresponding request item. See BulkItemResultKeyword. Read-only.

errorError

See Error. Read-only.

Discussion

The KeywordCreateBulkResponse object is the response envelope returned by the bulk keyword creation endpoint. The response populates error only when the system rejects the overall request before processing any items.

Example

{
  "result": [
    {
      "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