Interested in sharing your feedback about the Google Ads API?
Sign up to be invited to participate in user research!
BatchJobError
Stay organized with collections
Save and categorize content based on your preferences.
Enum describing possible request errors.
Enums |
UNSPECIFIED
|
Enum unspecified. |
UNKNOWN
|
The received error code is not known in this version. |
CANNOT_MODIFY_JOB_AFTER_JOB_STARTS_RUNNING
|
The batch job cannot add more operations or run after it has started running. |
EMPTY_OPERATIONS
|
The operations for an AddBatchJobOperations request were empty. |
INVALID_SEQUENCE_TOKEN
|
The sequence token for an AddBatchJobOperations request was invalid. |
RESULTS_NOT_READY
|
Batch job results can only be retrieved once the job is finished. |
INVALID_PAGE_SIZE
|
The page size for ListBatchJobResults was invalid. |
CAN_ONLY_REMOVE_PENDING_JOB
|
The batch job cannot be removed because it has started running. |
CANNOT_LIST_RESULTS
|
The batch job cannot be listed due to unexpected errors such as duplicate checkpoints. |
ASSET_GROUP_AND_ASSET_GROUP_ASSET_TRANSACTION_FAILURE
|
The request contains interdependent AssetGroup and AssetGroupAsset operations that are treated atomically as a single transaction, and one or more of the operations in that transaction failed, which caused the entire transaction, and therefore this mutate operation, to fail. The operations that caused the transaction to fail can be found in the consecutive AssetGroup or AssetGroupAsset results with the same asset group id. The mutate operation will be successful once the remaining errors in the transaction are fixed. |
ASSET_GROUP_LISTING_GROUP_FILTER_TRANSACTION_FAILURE
|
The request contains interdependent AssetGroupListingGroupFilter operations that are treated atomically as a single transaction, and one or more of the operations in that transaction failed, which caused the entire transaction, and therefore this mutate operation, to fail. The operations that caused the transaction to fail can be found in the consecutive AssetGroupListingGroupFilter results with the same asset group id. The mutate operation will be successful once the remaining errors in the transaction are fixed. |
REQUEST_TOO_LARGE
|
The AddBatchJobOperationsRequest is too large. Split the request into smaller requests. The maximum allowed request size is 10484504 bytes. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-12 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-12 UTC."],[[["This enum outlines potential errors encountered when making requests related to batch jobs."],["Errors can arise from issues such as invalid tokens, incorrect page sizes, or attempts to modify jobs after they've started."],["Some errors may be due to the size or content of the request, like empty operations or exceeding size limits."],["Certain errors, particularly those involving asset groups, indicate failures within atomic transactions."]]],["This document defines various errors related to batch job requests. Errors include `UNSPECIFIED` and `UNKNOWN` errors. Jobs cannot be modified (`CANNOT_MODIFY_JOB_AFTER_JOB_STARTS_RUNNING`) or removed (`CAN_ONLY_REMOVE_PENDING_JOB`) after starting. Request issues include `EMPTY_OPERATIONS`, `INVALID_SEQUENCE_TOKEN`, `INVALID_PAGE_SIZE`, and `REQUEST_TOO_LARGE`. Results retrieval errors are `RESULTS_NOT_READY` and `CANNOT_LIST_RESULTS`. Finally, transaction failures for AssetGroup and AssetGroupListingGroupFilter operations are detailed.\n"]]