BulkItemResultNegativeKeyword
A bulk operation result item that includes the affected NegativeKeyword entity.
Declaration
object BulkItemResultNegativeKeywordProperties
| Name | Type | Description |
|---|---|---|
correlationId | int64 | Client-supplied integer from the corresponding request item. Read-only. |
operation | string | The operation performed: |
success | boolean | Whether this item operation succeeded. Read-only. |
result | NegativeKeyword | The NegativeKeyword entity affected by this operation. Null when |
error | Error | Per-item error details when this item failed. Null on success. See Error. Read-only. |
Discussion
The BulkItemResultNegativeKeyword object extends BulkItemResult with a typed result field containing the NegativeKeyword object the operation created or updated. This type appears as array items in NegativeKeywordCreateBulkResponse and NegativeKeywordUpdateBulkResponse.
On success, result contains the full NegativeKeyword entity as it exists after the operation. On failure, success is false and error carries per-item details.
Example
{
"correlationId": 1,
"operation": "CREATE",
"success": true,
"result": {
"id": 555666777,
"adAccountId": 123456789,
"campaignId": 987654321,
"adGroupId": null,
"text": "AwayFinder competitor app",
"matchType": "EXACT",
"status": "ENABLED",
"creationTime": "2025-01-10T08:00:00.000",
"modificationTime": "2025-01-10T08:00:00.000",
"deleted": false
}
}See Also
BaseBulkRequestBulkOperationRequestBulkItemResultBulkItemResultKeywordBulkResponseKeywordCreateBulkRequestKeywordCreateBulkResponseKeywordUpdateBulkRequestKeywordUpdateBulkResponseNegativeKeywordCreateBulkRequestNegativeKeywordCreateBulkResponseNegativeKeywordUpdateBulkRequestNegativeKeywordUpdateBulkResponseBulkKeywordCreateBulkKeywordUpdate