AI-generated Key Takeaways
-
OrderActionError.Reason
defines the reasons for errors encountered when performing actions on orders. -
The errors can be due to permission issues, order status (archived, ended), unreserved line items, delivered line items, or company credit status.
-
Each error reason is represented by an enumeration value, such as
PERMISSION_DENIED
,IS_ARCHIVED
, etc., with a corresponding description. -
This information is relevant to services like
ForecastService
,LineItemService
,LineItemTemplateService
,OrderService
, andPublisherQueryLanguageService
. -
If the specific error reason is not exposed in the current API version, the
UNKNOWN
value is returned.
The reasons for the target error.
- Namespace
-
https://www.google.com/apis/ads/publisher/v202411
Enumeration | Description |
---|---|
PERMISSION_DENIED
|
The operation is not allowed due to lack of permissions. |
NOT_APPLICABLE
|
The operation is not applicable for the current state of the Order. |
IS_ARCHIVED
|
The Order is archived, an OrderAction cannot be applied to an archived order. |
HAS_ENDED
|
The Order is past its end date, An OrderAction cannot be applied to a order that has ended. |
CANNOT_APPROVE_WITH_UNRESERVED_LINE_ITEMS
|
A Order cannot be approved if it contains reservable LineItems that are unreserved. |
CANNOT_DELETE_ORDER_WITH_DELIVERED_LINEITEMS
|
Deleting an Order with delivered line items is not allowed |
CANNOT_APPROVE_COMPANY_CREDIT_STATUS_NOT_ACTIVE
|
Cannot approve because company credit status is not active. |
UNKNOWN
|
The value returned if the actual value is not exposed by the requested API version. |