Home
POST/bulk_update_negative_keyword
Note: This method is only available for select partners who have been approved for the eBay Promoted Listings Advanced (PLA) program. For information about how to request access to this program, refer to Promoted Listings Advanced Access Requests in the Promoted Listings Playbook. To determine if a seller qualifies for PLA, use the getAdvertisingEligibility method in Account API.
This method updates the statuses of existing negative keywords, in bulk.
Specify the negativeKeywordId and negativeKeywordStatus in the request body.
This method is supported in Sandbox environment. To access the endpoint, just replace the api.ebay.com
root URI with api.sandbox.ebay.com
This method has no URI parameters.
All requests made to eBay REST operations require you to provide the Authorization
HTTP header for authentication authorization.
In addition, this method requires you to include the Content-Type header and its value should be set to "application/json". See HTTP request headers- opens rest request components page for details.
This request requires an access token created with the authorization code grant flow, using one or more scopes from the following list (please check your Application Keys page for a list of OAuth scopes available to your application):
https://api.ebay.com/oauth/api_scope/sell.marketing
See OAuth access tokens for more information.
Input container/field | Type | Description |
---|---|---|
requests | array of UpdateNegativeKeywordIdRequest | An array to update the statuses of one or more existing negative keywords. Occurrence: Required |
requests.negativeKeywordId | string | A unique eBay-assigned ID for a negative keyword. This keyword ID will be generated for each successfully created negative keyword. Occurrence: Required |
requests.negativeKeywordStatus | NegativeKeywordStatusEnum | A field that defines the status of the negative keyword. Occurrence: Optional |
This call has no response headers.
Output container/field | Type | Description |
---|---|---|
responses | array of UpdateNegativeKeywordResponse | A list of negative keywords that have been processed from the bulk request. Occurrence: Conditional |
responses.errors | array of ErrorDetailV3 | A container that will be returned if there are one or more issues associated with modifying the corresponding negative keyword. Occurrence: Conditional |
responses.errors.category | string | The category type for this error or warning. It takes an ErrorCategory object which can have one of three values:
Occurrence: Conditional |
responses.errors.domain | string | Name of the domain containing the service or application. Occurrence: Conditional |
responses.errors.errorId | integer | A positive integer that uniquely identifies the specific error condition that occurred. Your application can use error codes as identifiers in your customized error-handling algorithms. Occurrence: Conditional |
responses.errors.inputRefIds | array of string | Identifies specific request elements associated with the error, if any. inputRefId's response is format specific. For JSON, use JSONPath notation. Occurrence: Conditional |
responses.errors.longMessage | string | An expanded version of message that should be around 100-200 characters long, but is not required to be such. Occurrence: Conditional |
responses.errors.message | string | An end user and app developer friendly device agnostic message. It explains what the error or warning is, and how to fix it (in a general sense). Its value is at most 50 characters long. If applicable, the value is localized in the end user's requested locale. Occurrence: Conditional |
responses.errors.outputRefIds | array of string | Identifies specific response elements associated with the error, if any. Path format is the same as Occurrence: Conditional |
responses.errors.parameters | array of ErrorParameterV3 | This optional complex field type contains a list of one or more context-specific Occurrence: Conditional |
responses.errors.parameters.name | string | Name of the entity that threw the error. Occurrence: Conditional |
responses.errors.parameters.value | string | A description of the error. Occurrence: Conditional |
responses.errors.subdomain | string | Name of the domain's subsystem or subdivision. For example, checkout is a subdomain in the buying domain. Occurrence: Conditional |
responses.negativeKeywordId | string | A unique eBay-assigned ID for a negative keyword. This keyword ID will be generated for each successfully created negative keyword. Occurrence: Conditional |
responses.statusCode | integer | An HTTP status code that indicates the success or failure of updating that negative keyword. Occurrence: Conditional |
This call can return one of the following HTTP status codes. For an overview of the status codes, see HTTP status codes in Using eBay RESTful APIs.
Status | Meaning |
---|---|
200 | Success |
207 | Multi Status |
400 | Bad Request |
403 | Forbidden |
409 | Business error |
500 | Internal Server error |
For more on errors, plus the codes of other common errors, see Handling errors.
Code | Domain | Category | Meaning |
---|---|---|---|
35001 | API_MARKETING | APPLICATION | There was a problem with an eBay internal system or process. Contact eBay Developer Technical Support for assistance. |
35089 | API_MARKETING | BUSINESS | We are currently testing a premium ads product with a small invite-only group. We will share more information when we are ready to expand. |
36337 | API_MARKETING | REQUEST | You have exceeded the maximum number of negative keyword requests in a bulk. Only {maxSupportedNegativeKeywordRequestNumberInBulk} Ids are supported per call. |
36340 | API_MARKETING | REQUEST | No negative keyword found for negative keyword id {negativeKeywordId}. |
36341 | API_MARKETING | REQUEST | There are duplicate negative keyword Ids in this request. You must remove the duplicate(s). |
36342 | API_MARKETING | REQUEST | NegativeKeywordStatus is missing or invalid. It is required for update. |
36343 | API_MARKETING | REQUEST | Negative keyword with negative keyword id {negativeKeywordId} is already archived and cannot be updated. |
36348 | API_MARKETING | REQUEST | Negative keyword id 'negativeKeywordId' is required. |
36349 | API_MARKETING | REQUEST | The 'negativeKeywordId' is invalid. |
This call has no warnings.
New to making API calls? Please see Making a Call.
Note: Identifiers, such as order IDs or user IDs, and personal data in these samples might be anonymized or may no longer be active on eBay. If necessary, substitute current, relevant eBay data in your requests.
This example updates the statuses for negative keywords, in bulk, for a Promoted Listings Advanced (PLA) ad campaign.
The inputs for this sample are the negativeKeywordId for the negative keyword(s) that shall be updated, along with the updated negativeKeywordStatus for the associated negative keyword(s), both passed in the request body.
POSThttps://api.ebay.com/sell/marketing/v1/bulk_update_negative_keyword
If the call is successful, the details for the updated negative keyword(s) are returned.