Contents

NegativeKeywordCreateBulkResponse

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

Declaration

object NegativeKeywordCreateBulkResponse

Properties

NameTypeDescription
result[BulkItemResultNegativeKeyword]

Array of per-item negative keyword creation results, one entry per item in the original request. Each entry includes correlationId, operation, success, and on success the created NegativeKeyword entity. See BulkItemResultNegativeKeyword. Read-only.

errorError

See Error. Read-only.

Discussion

The bulk negative keyword creation endpoint returns NegativeKeywordCreateBulkResponse as its response envelope. When allowPartialSuccess is true in the request, inspect each item’s success field to determine which negative keywords were created. The response populates error only when the system rejects the overall request before processing any items.

Example

{
  "result": [
    {
      "correlationId": 1,
      "operation": "CREATE",
      "success": true,
      "result": {
        "adAccountId": 123456789,
        "campaignId": 444555666,
        "adGroupId": null,
        "text": "free awayfinder",
        "matchType": "EXACT",
        "status": "ENABLED",
        "id": 987654321,
        "creationTime": "2025-01-10T08:00:00.000",
        "modificationTime": "2025-01-10T08:00:00.000",
        "deleted": false
      }
    }
  ]
}

See Also